python2-decorator-4.2.1-lp151.2.2 >  A \/=„&l+qTÕnr%:FK_<yE!n^OٵVr3iߊ"GDS[>U,D%_?rA`X!&.N.B ?EAm(9cZ4c8#>-k :O̬` Tz;fx,5W9jS& 11+u /ǘ[Ed!{";KPG "VPBb:'u$Q2 Qxn09ab52a31f44236e5b3960131ffa95085f8ab1f2ffd68626a2dc2b8478678f2bf7d055411e3e3e8f078c8f0392ffb5a5bafd497a6^H\/=„tI}S%0.G |ۘb l4~\ B6OK 9ksGsDw.·ZQ`\AtT8v$5㯬RI!J+H 0o磌ʿewЗ^PWnj(,qpCCWޓ36&07!6d+Xy21 .IcY~mơGr_B6Tql/6Z{eR(l'* FAy[rM?˳!>pA?d $ Q 4Z`h     ,dTx( 8 $9 \: ]BHFYGlHIXYZ[\(]`^*bczdefluv8wxy4z@PTZCpython2-decorator4.2.1lp151.2.2Better 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.\lamb61openSUSE Leap 15.1openSUSEBSD-2-Clausehttps://bugs.opensuse.orgDevelopment/Languages/Pythonhttp://pypi.python.org/pypi/decoratorlinuxnoarch u/ @99!RA큤A큤\\\\VX{A\Z[*5\\\Z[*X{H\ 9fda057706286e43f89361bf83ce6a24930206e087f75eace2f12388534b0389de7fb6a60dbf285f76198cd71a7500cce4aa95028dfee96d1620f15076159c5f01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b00bf38a14516407c2477c3823e12d1a363498d4e4c0dd99732a447bfea68b2ab2a7e9e423a3cddcb56c5757204c398b74fd8a634630739ca615b8dcae0bf0d2210064aa32bc804683d3dc0e7ce033debcf0e6b13cf8a7ed01b1f51a14f9364f8ec19a3054ab3e722c307f1f153f9cc6f620167782b5eb88e8daf06619b8222ad295d916d0929207d752b733ae075c9b96958686f2bc88a771ba8b2211ebd5e8b228ba78b4d9837400230d9924f4ca3d84ed14d8cf3922198cd3d0c907628fbbec9fbbd46d5af040b2b26db2f693034c95de8e9faaaf1cd68af358b092a56d4545c841c4591be5ec522e3bb0d2dc3367beddd4b6b023ef9507e0d656a50cb4c9frootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootpython-decorator-4.2.1-lp151.2.2.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-decoratorlamb61 1544476688 4.2.1-lp151.2.24.2.1-lp151.2.24.2.1-lp151.2.2decorator-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.1/standard/885ce56aa52620eb40f25a641c9a0c85-python-decoratorcpioxz5noarch-suse-linuxdirectoryASCII textASCII text, with no line terminatorsPython script, ASCII text executablepython 2.7 byte-compiledUTF-8 Unicode textRRRNs@butf-812378c8c582dfc71962b394888f11ab21132be3cb72da6dfbe59774d7040e57a?7zXZ !t/:] crt:bLL #2hc ä`5#Qc^Z+x}F\3x96OLׯ" (]۝hW+T؃c|[{72dSc(ɋ+G}C=B5 ZgITÝRn_?DΓWv/vNLKRBfj}#HզM*2~96ݚK?~ɬal5gxO\߫$2Yj9NN#2O U[59X;*p2w;rc#nUBel \k>*dM#Ƃ]c[1%$\M*O@P">~4UxnE'/o-GŤBT ;E3Byj@M++Py#K<01k5X4|ۃ^-hMj#٧"P vr4pViA~R8O xiiTE&n'(& Ihiyyx8*oalX>!wɀÔX]`9.hQ(]ĊP4 !81FDHy}VxnZ; 9 <{'z  0!y{GrL%s`j4Gk}O`hŢrlrJ& s|J" nt>%g*-kA39=WO-=$qqi _}@WѤEC\7SSC#uvY.7E%=+̷ҞE3$̥{dnN6odkՓJn ?kD2? '׈oD}PLPO~AX&3a7&,Gd59Bt O !I܆qC J5MC\w6#5_)[T/a %7ƋLk#[P {'08y3>@sIc^qis,+yXF=E?RVXbK\i/ w[#pLFUtiU 0PG ZQiWMJ+:Þ;0#j/bV)uuov)wWWSC4*֬g"Y2#@L쵘jT{F׃z /z6J]N0k, ϯqxp),u.شd][Tw; xg_HPaVT(~~/H(JJJܓ,C5q&bFFHTB7 ||U>JSr٬!G/pB@$qVxtUT۳ge6YwU1haT!FodQ::l!4MqG,z-򤰽T݉N/PFV =M2Be웷eQF|msj7U!z6[ZYŨHbCJc|[LuFUŢv`^ `Ǖl،D|& Xx5.u}aΏY +KѩL> . c…Y2NIoPIW:Pǘ]0<Y* VL](O=:/.Y5,dֹhm3q.nfbfi#yâiѯ ȐzsPL m#>ըMQ@~U}l>Z2>`'SbbvtL b65eu#p ڿ|@KExs=l['˜ 'x %C=;Xcm.g8uDD>I{$l',(βFT]<3wYIӹG՟~zOY@OA}jU G_B}x)kUsHLBh[0lEXm2 D)Zf%P$ $Af )H6}Xy\$L[P[$qȗN>;]ntYMHzuؔZń3 unɳ 2Xp YBފG1E[ rb^VX~YЋ=Z,ZiA`UhQ.MHង1Q*ĹJܿ^X~l|:Qdx/OZ=jܿ7wY(#j %eɱd3k9\ j(_ɞzinn C&)q K1+KK K,KtI$mpcoJhR"9meѥ 'UZo;C1MȌYTX2 dD)F|h"i͉mh(%TLJG;KR ܺ!o/x@q$txSkջ4 )(±a!SDy > W㧠*Vq6™ uGڧcS} -B#p+/m.En}[-9L:# wp(:T@(1cp8 Z.$pmG_\MQKBKrDWOў'h/TJ7b FK1uzjd.hD{pL];$}ܗ!珎ڿtzkKA RP 1Z (p R.i`2gsUA_zfmF4CMi~0!|>9ʄ3 BnW: 0OٔvI-дgVZ 9ōPUo8{uSyr\RN;C/0glh?"U;>AYB ߆q.3EKԠJ\U>S%2 .R\Ӗ0;XJByKЉ\`",Ht)Cq0{8oUJ_'SVŠ&Ds<%Qu'/X@ߏ#unD?C{ b O=KCO8K%࠵ ?Uz #<bZIFt2laOCp h[նFuPl)#0#}Yeq(gZhb' )Mx4=Tw?p q!*6VYQ)emrhB`4-833`5kf/;o Sgf )GϬj,1xY~X Ƒ8M:GRLIWFo#JqRK* "I@cYLu\4ɚ!~$ ПI S,^ȧrN zТ6A`@efy띯[B;x}tzU>@" jvӟw~Cni^SO9"PxP@>(Mó7k*R7 յ}|84M 7 bl5Ĵ\4`vO_LF hf,tf-ozTc3F¾WJZ+bEis:*Pwp $"?T"mhc1r/kvz$6̣$m,mnM)70Hvz=uEIDEո] C7]å|`RD@!v1L]NXr꘴ |v~㬙!'#+CTSC~舤7`-d=˴B1 g A){tS +]:./54.j'ts_0颡wwtꗊ, gFj_ }y<lS ln:,÷;}9QKɞؗ_Q'S#9â5\vJ:򭈢w6g"?,UɩTjzaUA)&̓ }y0_[q?է˕!fd !WECȑg3ֻE0U]<18[ EES vO)>K,&e \GEqM0:k_t)XH_@s'5 ) n: ߦ /ϯa[?>/(DbW ZAm VH^FYEk~et狷m$${r!*M6B]z;>Jz^Kpɩ2&1X!.EpՖ^nLDCx؄!;zJ+( fOLͦͤd%6̝Mi-.12\D}?Шjܿˠc%RR˽|HN܁no(M/ܠ,r³6z|PRL]X-c K[y:e{g<JUR*£+D2 ͎+LoSi k\>jp][ur{g{@ 45‘Id36;o`(p@47dZO_` 4c{7AёALOcT]|`p$!ݚpPQC&l?zMux5AME>4)65lx=Mvja)}H}5}Eu1 ^1Os//y@ hzxZ~&[217-qQGy JW -gGal gapYlY;rT!hT\,4um%&K2]W}pdJ_|H5g ,#USИ[h~gH8a*EtHVTd XBVups⦢|';1+&a)ڹ%P+CO8TM1ܳuvoƿ2AZwf1"l(jY=5Å|10kڙEh{簠OLhLMBAqiOzSH0yִ͙s 1O $w4Ɉ!Rֱǖ!ZE[tkhcչ&\`R|+-POX%P Akw p=&Tf]JR=C2/yJ9Oư`,nDȘfK :Mi1)²㙨ˌ$ lKf Sz֥b㶉5z;jռX!լ rOi}SHA%gHn x2GPU9kPSR@ ;#㮆@[c>2UmXqÿF_1`EV t^{BHƝr_sݯYucNP %SyT U]8Pq?D$ۡ8=2CF[3> qe@wr$YL) 2\?Qu1^'WefsSȒ\OVI_kPuC$ Ea5 Ъ>Rvm̢hƶ70yV@t;,"3wbZUNN#U{f`^^]7w(}Ob=_%|Sm-Ti*k\Y6^aJ#'KF^n? Ui܋?pO9ȏ2$ξCRcy hu/too]mϡȝi5mpx/A&Hҧ,vA{ƱsICE=IWS[/G24xTM7P[((jMeQAɄ1StEECm%iL8w;v$8,:AϹPrRXzsB6ٺm$8} `&΀<+#/էN2L]iw֢$} (,9IvI{kW7/`6>T{6$%WylbQKf[2>pǒ o63wW. h`Z<%Qq:1We3g1 [ 7RW KMǑAY}wn(?iȚ"݋i][s8LQPgmLǨ AאܣM=!gojx5CT5- 'f3/Zz#f}S-C}@#ӝ>TE h8w-ԐɡSt<$p+ 9a]Q%:l[J"#&֥14R U?<`k`Zί*~^nU0#I/nܾHqR2" Bdպmgu7GV9v%|/=fm`c΂d-jMA-7GksY c(ZMktKI&|*s+ymןVj$qA i9<2d ˄l3Y<$6!V53Hک-祖TƂG=[,<fK\yǛa 9kOf:1_!Ǽ5.X-J,9\Ñ_ p|]VЈ uDڨ>j  Ȫݔ3U' j[GMc5=*^-4G%F[tw 2|x!LY䅛]' A 9_]p/gPsQP$K0r5#fWw=BGxI.9{~6x˳Rۋ_ijYFe 9aā-t-7|yji ZC:~s<1r󐾜i$xP[^I+w^e1#jװ_uh/HH]RC>m) 8Дe&|4n :^aѳq _7p@_!WU6SI:6L[09II`5WϏd,m->W#Y?6ς[%*TMn}旲! 5"*rl)?ޱJ[-dPSuG٩?ӚW.^^.1Rm5l Ή7c-/.OiBH W{`nutAՅ|.j<'"} -Vw*8H9?! r9֏l`&C ;logzڠOѳ&֥hۑ/:C^e-7 e)G-mDC3f<ۘm,5١V<[hn;'"|c,]uM_vTU*jN?`TMf n*S(;0Wq0K|O)y=|)zUuףSev؏a'7ǧvcjV9SPY|@ 5*G>T@Qu9.j:Wo 0+B헕&v /O; A2N= xK,Ys샵Lnp~+ZUYCࣿ*8-K@.ܿm\5sb<Ǯ]BAXe\wuE4˴sfo3'^WiB<*3?IR18#)_xuxBoxu!*G7$6tQ1k Q/f萯0N-r)@q%w/š 7m#thia@.nŪخ\͏R_{\ce\\F5pD.Y`§o#Ne˂y]KBWLtޕz!X[ƦW܋O| (Awib@D_%f_%kr>2LNĄVQN&x0*14Dg5YQzXbcECk7Rtko()i؎pղ />H@BNLйU.=kB=q $I)Ns1Ang*q.I ~EmK&_dzC{ltS١"{U#6V ~4g2^G1}?'u?m5|?on/ɺI7r> Mո?Ҋ#}t5c;`b fJǟ8,0,%~pܩژbCu7]W!5$5dy;qIURF>~f|95c=>+=[ȘzT8qR!8U繾Dl;ZXgf~~$L Uyʰ+X Vh/XϷjڡ蠝1xR. q5ڡ^m7\-|@h.-5M)@FRE7ch-l 2~[ƨpPL݊*&>ylto:QjsfO/Oe<{ cq(J9lInmlFOa5I'CRFDaFgHx8BR8X OiLn2tgb,Fhl4fǯ3ꈆ L]miZ`P R@spnؠ6Oi44H"%G>r Yd8p"r4"hFXf?BoT[ I4l%7/{eE OtLX;#.*UF(B1ѧ6&RE;un*-TzA,fĩ*EtCr(}azH"|7'0/UAc l/ܸG1|2yaR:  | 8f>n[͈o$G Um@V!Ma(0e+JV/!4KFF;! P|ZtK܎) YZ