python2-decorator-4.2.1-lp150.1.3 >  A ZV/=„k ^CBxLwq)_hǸX }3H9yqu>=XD])1cTOwC:X[XG*J? wjxK;ٝg2PjXHT,˸k:"IjAmܤD?Z~eДFfl~@1]d2/l +֗kn& ]Įw]ݮ] )I#>su34d041b0f1ad782d90842f82e4528711de8baf8c2efa4df81a9e7dc449e3d5b36701aa0a316478bee55f344621ff843679a46dec3^PZV/=„#Q;ycPTxud,K jl6-*{~z`d/,iT3]siJ|5<&WN&ICf{d:79X8r7 ߡ6b `ٮe-k+GT3c6PGjXpoG*!hD ZMiGEm *H&eɄfFxKYbOg&oLpA?d $ Q 4Z`h     ,dTx( 8 $9 \: ]BHFYGlHIXYZ[\(]`^*bczdefluv8wxy4z@PTZCpython2-decorator4.2.1lp150.1.3Better living through Python with decoratorsAs of now, writing custom decorators correctly requires some experience and it is not as easy as it could be. For instance, typical implementations of decorators involve nested functions, and we all know that flat is better than nested. Moreover, typical implementations of decorators do not preserve the signature of decorated functions, thus confusing both documentation tools and developers. The aim of the decorator module it to simplify the usage of decorators for the average programmer, and to popularize decorators usage giving examples of useful decorators, such as memoize, tracing, redirecting_stdout, locked, etc.Z_:lamb57openSUSE Leap 15.0openSUSEBSD-2-Clausehttps://bugs.opensuse.orgDevelopment/Languages/Pythonhttp://pypi.python.org/pypi/decoratorlinuxnoarch / @99!RA큤A큤ZVtZVtZVtZVtVX{AZVtZ[*5ZVtZVtZVuZ[*X{HZVs2985b8de47c74b5368345cf94ec6fb1afb214f9274af61d722dd4015fcb4fc96de7fb6a60dbf285f76198cd71a7500cce4aa95028dfee96d1620f15076159c5f01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b00bf38a14516407c2477c3823e12d1a363498d4e4c0dd99732a447bfea68b2ab2a7e9e423a3cddcb56c5757204c398b74fd8a634630739ca615b8dcae0bf0d2210064aa32bc804683d3dc0e7ce033debcf0e6b13cf8a7ed01b1f51a14f9364f8ec19a3054ab3e722c307f1f153f9cc6f620167782b5eb88e8daf06619b8222ad295d916d0929207d752b733ae075c9b96958686f2bc88a771ba8b2211ebd5e8b228ba78b4d9837400230d9924f4ca3d84ed14d8cf3922198cd3d0c907628fbbec9fbbd46d5af040b2b26db2f693034c95de8e9faaaf1cd68af358b092a56d4545c841c4591be5ec522e3bb0d2dc3367beddd4b6b023ef9507e0d656a50cb4c9frootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootpython-decorator-4.2.1-lp150.1.3.src.rpmpython-decoratorpython2-decorator@    python(abi)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)2.73.0.4-14.6.0-14.0-15.2-14.14.1Z_:Y@X@Xߖ@UD@Ri QɆ@O@N@N1Ni@N_sKEJ arun@gmx.detbechtold@suse.comjmatejek@suse.comtoddrme2178@gmail.combenoit.monin@gmx.frspeilicke@suse.comdmueller@suse.comhighwaystar.ru@gmail.comcfarrell@suse.comidoenmez@suse.desaschpe@suse.desaschpe@suse.dehpj@urpla.netcfarrell1980@gmail.com- specfile: - updated copyright year - updated to version 4.2.1: * Fixed a regression breaking IPython reported by https://github.com/spapini . - changes from version 4.2.0 : * Added a facility to define families of decorators (aka decorators with arguments) as requested by several users. Accepted a pylint patch by David Allouche.- update to 4.1.2: * Made it possible to define decorators converting coroutines into regular functions. * Changed the documentation build system to sphinx and uploaded the docs on readthedocs.org. * Support for Python 3.5 coroutines defined with `async def`, thanks to Victor-Nicolae Savu who raised the issue of `iscoroutinefunction` not giving the right answer for coroutines decorated with the decorator module.- fix source url- Update to 4.0.11 * Small improvements to the documentation and tested with Python 3.6 - Update to 4.0.10 * Improved the documentation thanks to Tony Goodchild (zearin) who also provided a much better CSS than the one I was using. - Update to 4.0.9 * Same as 4.0.7 and 4.0.8, re-uploaded due to issues on PyPI. - Update to 4.0.7 * Switched to a new changelog format (the one in http://keepachangelog.com/) since it was contributed by Alexander Artemenko. Re-added a newline to support old version of Python, as requested by [azjps](https://github.com/azjps). - Update to 4.0.6 * Removed a file x.py accidentally entered in the tarball. - Update to 4.0.5 * Documented a quirk signaled by David Goldstein when writing decorators for functions with keyword arguments. Avoided copying the globals, as signaled by Benjamin Peterson. - Update to 4.0.4 * Included a patch from Zev Benjamin: now decorated functions play well with cProfile. - Update to 4.0.3 * Added a warning about the memoize example, as requested by Robert Buchholz. - Update to 4.0.2 * docs/README.rst was not included in MANIFEST.in by accident, thus breaking the source installation. - Update to 4.0.1 * Added docs directory and upload_docs command. Fixed bug with `__qualname__`, reported by Lucian Petrut. - Update to 4.0.0 * Removed the need for 2to3 by dropping the support for Python 2.5. * Added a MANIFEST.in file and produced a proper wheel. Improved the integration with setuptools so that `python setup.py test` works. * Reworked the documentation and introduced `decorator.decorated`. * Removed any dependence from `inspect.getargspec`, which is deprecated in Python 3.5, as signaled by Ralf Gommers. * Fixed `contextmanager` to work with Python 3.5. * Copied the `__qualname__` attribute, as requested by Frazer McLean. * Added a `dispatch_on` facility to implement generic functions. - Implement single-spec version.- update to version 3.4.2: * Same as 3.4.1, re-uploaded to PyPI - additional changes from version 3.4.1: * Ported the repository from GoogleCode to GitHub and added Travis CI support * Tests are executed with the new command `python test.py -v` * setuptools is now mandatory in Python 3 * The suggested installation tool is `pip`, not `easy_install` * Supported IronPython and other Python implementations without sys._getframe, as requested by Doug Blank - remove python-nose from BuildRequires, unneeded - replace README.txt with README.rst: changed upstream- Require python-setuptools instead of distribute (upstreams merged)- update to 3.4.0: * Added the ability to use classes and generic callables as callers and implemented a signature-preserving contexmanager decorator. Fixed a bug with the signature f(**kw) in Python 3 and fixed a couple of doctests broken by Python 3.3, both issues pointed out by Dominic Sacré (18/10/2012)- update to version 3.3.3 - minor spec improvement - python3 package added- license update: BSD-2-Clause SPDX format- Update to upstream tarball, no code changes- Add python-distribute (setuptools) BuildRequires, seemed to got lost- Update to version 3.3.2 - Added proper changes file- Update to 3.3.0- Update to 3.0.1python-decoratorlamb57 1516190400 4.2.1-lp150.1.34.2.1-lp150.1.34.2.1-lp150.1.3decorator-4.2.1-py2.7.egg-infoPKG-INFOSOURCES.txtdependency_links.txtnot-zip-safepbr.jsontop_level.txtdecorator.pydecorator.pycdecorator.pyopython2-decoratorCHANGES.mdLICENSE.txtREADME.rst/usr/lib/python2.7/site-packages//usr/lib/python2.7/site-packages/decorator-4.2.1-py2.7.egg-info//usr/share/doc/packages//usr/share/doc/packages/python2-decorator/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -gobs://build.opensuse.org/openSUSE:Leap:15.0/standard/885ce56aa52620eb40f25a641c9a0c85-python-decoratorcpioxz5noarch-suse-linuxdirectoryASCII textASCII text, with no line terminatorsPython script, ASCII text executablepython 2.7 byte-compiledUTF-8 Unicode textRRRLZpP+⊗̾utf-8212b1787f83df89937860fdc3eb266025f736d0b7942553c35220a408018bfba?7zXZ !t/:'] crt:bLL ~ڐItv̤K=l-e'(h@#n- zMִn#^؛f:*HkTx!F(8؃})!7Y83F7|{|M;#tKӤH (b#ڢ%#D O2{!>3Y& 烣mA,![rDת{G8BYYn }ѝ@ځE:u*K2(1^'F6pRe.E6O5(NȬ.lg g/&_'rDmLq~bF@.`xAmi 9 Q=_9* =^qr xMJx u1v.%0h>%4N.BѤ,T K6 xAMevMhY{1OʋȲ< @7_jR4κPՔ^]U xWh?ڰlG{e|li(>Z:w{s=$g$'ZH0T F{%B0|gDN~!;d#lʾ>Ё$;WmO˥W(Ydžt'7wA'Uofq&>_Q[hIϨ-S^ϱXiOfF{i;Y:-*h)Ddv/K $.`~&P ?l1͊耚sA[?6x~น?_#a!c ކGkL7oKJc|6_kXe`tVKQvir1ڄxtLRa5]Xv;0Ai-Z+:zyAImjjX :Hm\?gˬ?\"ea?LY,Z2[fC W<L̖(:'8;EMK+n{0$ >HG fr"Ҟfq X MaEMf0mZ#pd9+1ںrn]>^]1wͳ dLt.k„.zۄNk8r#s;E*Hģ,SъKP 1% Kceߌׇ3R[1lWR0| ' W F+[E$zxD+*6FA 6_^o ̮_L-JWS{+&=P/ 9XŌgT>0@(* u/;ם,a0 oA_! !IY_(˖zfL=uIo43#ٙ:t^:Gw;J`M{MPG9|"lecvu + &&hIݦRo;ҪxL|^kEs3a/nMFq~t6F5_~ɞ!hx @1.m_5Ȩvvz2V L0|5ֶ6D)X1<TLcV@%g0Tp^M HH1y5jfWjDquɴːhXߙe$'>DxlD؊PULSޖy2逴a3lnu9t  }z]DqbU%,d&7}" zn |b9%J#VW-Lh UGI1AxB)wUiB䝴? kȊ}ܙY3ytq7f(u<,YTY^.s,"o҆RQ *U]a6>.&qu{IgEyCsM*o 4GRrpAKb-aIk+^ UWgxk џ匪v%y ג8ITʎAWkZ>kQw  уkU逕p ý7fE0fiqWMR$SZP(Bmi){F-JaVNT noxgI:ni~7CMiA91$ĒcZ4b>^fX6pB ӆ"6VQ=iɀLZ{z ςE~^fuf耒=xt50] 일5X^t.7D߬pTI?-~6rpGru2_Kj(`x0բGG·?c냧q  n''])o $MbzKSDK'a~ZPEni%#SnGgKg2nF.T-ȊL.#n/)v/R²~ Ja56 9`PuݷF]giS n\3, f:JbnȷYdogM*cO %DNxma*~^P\8Nu7S۵ð5E5[Qy,!N4HtՌ@;VT[">/pt7y2&NYZסt,͔|.b6J&T-ϞCfG^B}yOZ&埇mn~߻]@[ ra[(CI% L]bHіz6 -V5{zC~ꄮg[m U9wr_cPG*]\ ^>]MOO9 LVK*^/wI,~>T@w*aZ#g[<13teeN251ըCz4yI2RQa⩘46 VH1(8O2$oo|ةɻZI@ٴkAšnHRH)kZ" U zc-銭mY(\3䙽|#eV1x@A>B#7BapHDODErڻ?v2dE*I*icSgr@r=|"݈kt5dEØY%d/ss}AlDkQ q[l8eBbfm(!qn: ?YU Vs,@]g_[*xaA^BA5#6:3< D)N4Zfl>odl0pڷtnljfg$ʼ2<_`%<%LIJB.isV[=/yYv8P%^DY'|^-8YW׍sh GTz1=g񧓓P $<\wLuFXJrI^tť gE9h:=g0US1&T[}M7@ɕ;$2[K6d Q 1/QAoo%/}O_dKj2DK.R_ 5q ~R.+_Z7uԄ"hhEJb4 hҸq*m.oih_a:!*T$RE ;ힿudOH| pz;dir;k4 Hniil/FSa\5ϟߑ]x wB*UKy쵑L:f^n.QONkZNBt=N1d>Z.RXD+*x[d7|kk ,D *j40)u4n!,\h"0 Bp<mR#! CG{yQј G2y,w>JO}z'KY]EE3 AWRJ!jQӑLmN1^& IZAR4߽7N"ZbZշhhuBެ2i9,hI>&Ja˟M(z%۞_k~O pY&lԷUoUb3h 5nB`mf= SјeEh-==Oc =DES'WRJ*ʉ sBGCPӐ;0_BkLhLܡ.0M(&1>)+e*Wt׆tB:\#Z|Ӱ3d/)tC KMZ˫:#j~k7.\Zc}%Dl Rz:+qÝu?!$XedÃCC|,.Զ v e9*I'@52nGTF%J n4,=wjc:Hpwl.>15i/U!וŖT m1kh'ُc%r 6ObE%VP,KK唉y vϑtD{K@: 9pSca )CJsNe+΢)˺2m"ɧ'fYm\AB*~PG-vw@{RRԍq/#@pBmSEXJX&CN!:ќXd5>I8 P,$a],ZB\ڀ$:4n&EG)S!G2b1ր"1G5u \ \p-gč ˜~ah0;K-O`مZHeHz0; bYA-eL FnqQ`]!m6zu};w~_2 ^`l/qʨPn/.=DʕB>{]L O>N;SBt W57HN!!܆g]a2dKjDjygwIIv'9fR1=;Ʌ4I|d:CYBt\B6_RvJJTz:nܠ/IL՛9haU$кhyѡOJ?3QChPK7cy q5ŁGBz,ߴ'խ 0ECjEyfF?lTP$S\`+q3d@v5 Vj7Έ'RCו܀1l@EtRc՝G/6m'Q9U+}f~ /2ǴfzқH]~geٱE!"\sF@$)9bjd'2JAh`Y nMEYa%Y.iA%wssvHBFS+*T8ܰJB8W+"}yyl59'#ZqXPà,kfUk$+ q!&5ΆƿZFFbfi4|6~99b +MU]rKT Ua}E-ܶ~:|ԧx7@ۻaa;X^ycj8`):DfWj`.F`,.dd5-^6{x,hp2~Ory7b؜=n8+H{ vemYG=ʀh/3^Z>'ye4\:<~5Z|j)S>z?T# 8ac` .IP]GԌw= ӑ#q=.a%nX?>W3`&542+dmŻ"ڭ jG5>t?ӿ _T0 c|Hwm۴}Ёpg@5a 9Áv_>7:lܸz¶8U m#`xU'ӟW^ҁ1M[HjQB{=N.%w* u~E^ugFޠB=K҄RdE${)A0G0qr?s(fqpGTVU;q=ai9I\6f*n]U?cvYVR!Ҡeidz'+Fk\) ,pTNXKb"Bc+`y(csZ>xTyjo%(8|C~˰TSgTu\Pc20"xOv=ϕYg^p<)VHMpv 9$jW2E9CE(e,bR|nI-#. rI2՛Y>MNe$C0QZT|IFn"b}<3bqh<&vm8w`s@&?RP5sՕ{nNr re0P?ɘ6^"JV88U"ېV{@Cffs|.g2B hjE u٧!?AEt%8<( i`BT?w?!"B*ҥ\ HbHAؒi6-dVRNh]>?AIL؂ &6k^AeRY꟪3.f06|98J뢑Dh)Hy;HaЮh_N !W8 HU, @2x)$/0YonxN> W;YfAt{{sXQㇾǒ7ZXfߋy O:nҾy@ /.G,(~K$4Xclkt7_W4ndsT9 ^U94#:Ua'^CԀ{,,t %'I j \:Gbԭ4;FqL\YrTѱPgGo!峝tE(#@@nA/8嬳N mFH|1b(ޟL%=EIg0'*=F?8gҽY/s=yy֘,2cRE{]T:oKz? J[`U9NI"r"aY58>̹K }ܼoj+h̘-7pmf\!Ճ)Ϳb-,Ċ[L_=ZBG[e!l=/4s'L47#&˽3#3trWݨk#Rh7竔![@+!nZ0'd{aOh?q|O!=N$B-7zm ?C%aXx[fRϜc#zBd{7T*eK KŽ缧%ڂKn];B![V;})c.c׉! Nj~RNrqLuu(QN OoZ`gM3&0$T>eyS?;;6lfq.(:Y` _ 3Dk}$-X ӽê6~yJ9:F?%ĹX7oԕoR'i~"H YvpRJrĴQC">@\?}yrPe!¶'9S#C֕'oD%3ע ͯe^pLcl{;E9.%NȓE!&7Ѐ ; .f?Xx 9JK??U)0ۓ'8DLu=_pex쓿6Py}V|}^jmyQ> 2N)UJc>ƧG4 mW!7%MK9?&K1 x3 \DP:!J]/ȀO@eJ>O,'PYzb@ f.U.9"/A*f] &:u*vߋH={36c1/Qq4cvt۾8RD-ʔj_Ǻ8g'k1Exo޹mIYJ[dêcmgl!b*_ɮ2|=DG|R8D ;d_X)$Eu=f~UX`_Јg80H{0R%ɬ (_R"Lu(;m,~*{!b _#yhؓV<:)*;[OݜUG4~kp\v yNQ3YK֡t7chK"/]g^m OB]NԓE+:Fd9Z!sZwvI/`TᐲaUEOd@kT k/ܢp+j%  xRY8{oQ'LnWNd.9~npsf0q+=%Cׄ`o;so]D }VLWG㭧ގ*I#?SAj+Xks8/1CG n\W`Dr" 8}Y-gONuo-=%%T"NM}nXtC eIllRY3}H㑋8zUb;de3~DMp!\3pe$Vp^b%.ޑsOĸW)Ui`fyXZ!M2rro|2GV^YKS9/bӖMAK(]ƨh}y`]KO@}u2Gp1h[*U橴ei2ije0eTcMŕ e(ʉG o7! X`K*b|:s9\- $ U?O*FppU2'xeR1hQU *0_ |b/nXN&ہe_FP.ʕڃA啵Y (o3 Ce`WP[Gd7كjF|dѐR 7@覀 A!( PS: V,r_%>G Oe/WHchak `'* +ek`jkaVD0 *-GAڊᤄ-ЖG忩-M |\j?+swHscO*X=#YiN\MCMMKg 8r8`/#S_=su@kFzJ|Yؙ}+uzaϚB,K6u&Uoe1_j V׾o&ӎ ʫ3{-َztlM*}Z}2lZ|RCSAp TO5TOu)gHʳ,2H:`{ƇC~J؀گ4*^P[;)S &+ݶD$I]1x9b. |-o <Ar Յpul|J!ӿHE\Vn)gUe/T"{4)?Su߉mdjby"*wAkBE8b T Ӝl5"ֱӵQ4/9K ФgYњ[nUS8(lOuwl9$6<( K$74Qq,Ϻ5)I"YW*/MLWw"k,ڟzhzD?Pum!|+Wy4bg,F& >Ϗ#!*!;FɘJUoJhSTp hcU2kd|컇2^KrY!T7 o\SάDDk #1ʥ1տf{bt_Rp7]ERTvȎǸd e~C6+Iduns \՗/ ]Y2Q&pu00 lU0WXBUG%(g\㣖0hYRL<#Ҳnx_6krA3̜CҗZhĿ%#Ĭ~eBYo@5Jɑ3$jsU{)7m?:3㱀$쭱Pb٬v{ѥL)yψ u,K!񯫌ZY VlNM}4ZzE, J sY+ 7ކTnr2c޻ w_~pzw:o}֋.>I+ѤݠopR4gt" YZ