python3-decorator-4.2.1-lp152.3.3 >  A ]5~/=„vu"9R!-PGń0U M RdRqrC3$Ox/)v}vSA?I(V/p>?d $ Q 8^dl    " 0h Xl( 8  9 @ : FFG\HIXY\](^bcdefluvHwx yDzP`djCpython3-decorator4.2.1lp152.3.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.]5pcloud120܇openSUSE Leap 15.2openSUSEBSD-2-Clausehttps://bugs.opensuse.orgDevelopment/Languages/Pythonhttp://pypi.python.org/pypi/decoratorlinuxnoarch00 u/ @!RA큤A큤]5l]5l]5l]5l]5l]5lVX{A]5lZ[*5]5pZ[*X{H]5i9f549b1fe685ae42c4eeb79c87f5cfc2750c09d83933fde5c2eb5d73057e4272cd369fbc79f76cdbb56493f0009f006d51527e225e2a09d716972b5472358fd99fda057706286e43f89361bf83ce6a24930206e087f75eace2f12388534b0389de7fb6a60dbf285f76198cd71a7500cce4aa95028dfee96d1620f15076159c5f01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b00bf38a14516407c2477c3823e12d1a363498d4e4c0dd99732a447bfea68b2ab2a7e9e423a3cddcb56c5757204c398b74fd8a634630739ca615b8dcae0bf0d2210064aa32bc804683d3dc0e7ce033debcf0e6b13cf8a7ed01b1f51a14f9364f8228ba78b4d9837400230d9924f4ca3d84ed14d8cf3922198cd3d0c907628fbbec9fbbd46d5af040b2b26db2f693034c95de8e9faaaf1cd68af358b092a56d4545c841c4591be5ec522e3bb0d2dc3367beddd4b6b023ef9507e0d656a50cb4c9frootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootpython-decorator-4.2.1-lp152.3.3.src.rpmpython3-decorator@    python(abi)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.63.0.4-14.6.0-14.0-15.2-14.14.1Z_:Y@X@Xߖ@UD@Ri QɆ@O@N@N1arun@gmx.detbechtold@suse.comjmatejek@suse.comtoddrme2178@gmail.combenoit.monin@gmx.frspeilicke@suse.comdmueller@suse.comhighwaystar.ru@gmail.comcfarrell@suse.comidoenmez@suse.de- 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 changescloud120 1569011056 4.2.1-lp152.3.3decorator.cpython-36.opt-1.pycdecorator.cpython-36.pycdecorator-4.2.1-py3.6.egg-infoPKG-INFOSOURCES.txtdependency_links.txtnot-zip-safepbr.jsontop_level.txtdecorator.pypython3-decoratorCHANGES.mdLICENSE.txtREADME.rst/usr/lib/python3.6/site-packages/__pycache__//usr/lib/python3.6/site-packages//usr/lib/python3.6/site-packages/decorator-4.2.1-py3.6.egg-info//usr/share/doc/packages//usr/share/doc/packages/python3-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.2/standard/885ce56aa52620eb40f25a641c9a0c85-python-decoratorcpioxz5noarch-suse-linuxpython 3.6 byte-compileddirectoryASCII textASCII text, with no line terminatorsPython script, ASCII text executableUTF-8 Unicode textRRR--Jutf-823aad9aa2c14410dc48b0ac73491e6f43c2ed46b5d04faf95e1c25d7ccec4375? 7zXZ !t/:t] crv(vX0~ݧNeᰬB:>i$vQ U+U~8&E~FeD+D^c{[A9 }<*F=^x"6^G6FbiG|l PeӠ,6*"?ˤpE<]t fޞDxI7Thodst›Cqs n7y;{ic8Řk6͎HNNE>Yd}9RRos (qVЊ5U2<C4&jۍ9pRҦ݊ DԋjU|Dd||hwvnz @qTYX bđ LS31`8A.8W_M=i3JҪ,d o`'3nc3V1#1Qc#ZyRe# 1HC24lN{O2^jkf ou[MA3 T CUס9T#fPQX.e/J˜,xq/PKe2S5R. =2K35oIb\I@mmϗ=)a՟4X}GXii'|R dxdqIuܚ.7V5FvuCdt?~׋vnvqa}dӧ b J 4ndiet>gj!4 %eGT_fZA#cĆpYr[ }PEd@s4+nu}ߐ@Ѡw[_$3йzͭTɣ"7|B;='h{+6]W#Eӳ+> ,*':qwzsؠ]db*T%*R@H2ekWOLuHX9 hN3*-F1&, $+}#0݄"h߄[|[Ճʍd37AQ7*0]A4+!1ű`V`e|De"@rlgDN!`3k_ p5 wĴge`O; s' 1:)^ Xh7\ܒd3-2AV|c H훧hV7޺w&ZZw=$H)z/П uIwlq2d`\Nx`,35[[&wtUp΢cSVRkBٚA3Уu{U0F8.7#,(]bof.z005'ˌ9k#\2$dn(;ׅ0qF% \3zCe㇥$3q;_N^b9I^<,US=<;=htmŶUqkE; wE(ϋ0J&g cg7r2:1NmLf.$xC:DXѯhgy /8oho\c$2Z{\mݣ\-/7\3Z)!qѰ-F6વaS'ҍ2w!"ZN+fx=#U#ouHdovZ-3W𺍈gNkuV{HJBsi}P٬B3WX?>6́Gz@/d欂O޶=~!jm Y~<$8翧.3ǁ+В#f妆2Yxr W ۚ ,Mra )r`KFx5!WP66&CZ3F֗d,ȯ8hyȸ{' lm 2mH](+\eXS\{QzC,i~xJ|CyQqtr/@R\H 4L+h^-71>\(EH%э[u.ϜF×/=~!'*TͿ§|6@J*aW{# "Q͉y@MgFDXٵroHGr̚ʓҾY Xƿ3"Pb濲-}ֽS(D7'nOf4*f\5k]G##*notb T.Ahu1uRWO߄V`VXo$ً5qi\?I13zZC>(_%=*(#m,T-NnvV鿫/ ze$R{xP@!1i%+&.[i #2&?+#H +#nNjg,o?eIޥ'~Zh;Muo;P_蕟P s[p*?r3Rxl/@y WH*u7px3 83SEdMP:-^S>O$)rcBko!|츺/E@E 1}SZ9z_8v]wHĎهDUkfgt k %d1}D"iNab*76ǖ^j2BU-5(@͟Hl;1?Ƣ}oH 0!C7E0qq1˃0|qrࠖCd׹(?yte# M0̊ /lfU[0̋߃W_!n GA5J%M(-R|na,UNG,:w?ȡ4-7 y|tbT~+fխBצFNMQBnCho1ab͜/ a7&unC>FU#p*M邷nz?Ǵ+!ܧNBJ5?:GE:PIrm'0wOA?5gz4b˵T[Β3p8(/9õ1`5םza 9>_tqe95s=hIrK5UIеh>RLR/s](#JaH 3{A-=_HdPj^H)T}k pYqF mhjC>[B)ÃύOC@Q CPjn]ؾ\ɂa6ɚ Ϙ&Z`CN?4p2#)eeM{S S0 g[KרF|4Pݖ/`N WG`OD?G4'8yXJ,^ K#QPIrJ5IF*O`3}MHf KNv3c; jĤ ~Q^>uc~k Mք%I*xCe~AX{rSg_zӊȵ_sa\-V,AvBD_f`|a@S=-S TWzEn"c1HяOJLhF^ȓr/Iʓuє3YfHEDIOɌqr_sEw yv_a(^xϑ9Uo \&O >f&i"jF -=C>45~K/ /g\v;{1fոz}1`fJRԖsl3j&@"Y>,wbwK1dY`))Y:+ ,OLec{As*јcs+e}'y%[-[0}H-.۽Zs'-N{;B}e6ML4sFi'@)!ƈj˸@["y @_IQɝQHoF/T)Vs祐K6à~5HN?|LYt_`])UEymqt>OGrF.u*Lw+t ?s1̑BlyǬTPr ^%*[AqegZ \ Ʈ!>a'lIO^c)=7ѕ?(-:8gUQxzZޔ$[PG.dVٜzôs+Z4" ,mO@Q-ZVQSd\Skvq:l=yXݣ:YH,H%Ou_11.8.T9 8nF.`x+>(sMCH MۅD|lrRKmמǃ:1%y>*!r F.kهֶQ5(5o'RJx%_HA-{% d&`U|Ԥ8ZSuWVє=AN'/oWSʆU)),Nt"mTPhmSR^!. @eRB7-f^L;;Hl7FWfr|x wfS p:242LŒ1^ ʘ/Bv2l_zeD4Bds/? ` q,q9xK4fK]L5{ew Lw!{2Xm`G[5Ka%ĆYp6O̵<ch⥻09b2kK!3IԬDk-ծ &*t06:u*;l9-1KBzV8e^Iψ[[ߚջr <⮖gD.lvx'; 9o'f_\bEzj{4EOKUT <+Us_9p&2Q㇪RaL Ơz-&Ƣ~?Ie<MUomLR Dѡ}7uԳ+Հ92v` h..uh߹!(TWMh%=/i!<[) Tsw 2F1pKwǗK/~We ;( =L6H)'*:O֡0Vgԍw,6(H(ЎVq!.-pY{!(nwX GC#)EMe{7NUp>&.˂zAY( jU Hգ}Gq\&oj /El e@ ghy~r׃@&&cTG[2y%Dσ?Ko6_2M "69 L;ex5ƸMoƣ<'&_Zh^R`ڵ: &}YMAY,My|xcp,5o+hF 'ԁX<2> %wt!a=\x9u qh^e-Vdk`!`FL z*D q?1zx3&kaIuM# Hj,c+SUC"hv%@СF 4C@2f!KsġqF eYyp<!~%j&*FI ϙ NӈʉD4bbظuN4 }TWw!NOU TԢh.3Ԝ&_!F[,Qm+z-, * 26($$Rǚo's0빠9ʴ#cU>ܮ'Iģ;KUȁ" *M/OCc8Yt g1ڻŊ]GNY531Z~ęx@áەnY1ǬH`צ-OF`,˨2YCێ5X}74 E< `5Cq!uZwGP9 '2s\NNi*'"]=a+ݹ!n:"gT-ZI)y&{Wf9]3Qi*HĶlJtkݔ/S #=U?'h#fd.Nª1m6,Sѩ:h#:n:)MNڗv6*ԀUsߵ?C9Y8:#A $Su'>>cTTz@u*$+dDV]E),ZwE`tuֽ(-wPƒ,'Au>߶f4u_jTvJe-7|nb~3-*湛Sپ#X;Lĵ`,4پ+; گw'cJoFJ% ҷ t\T 0+e9[w@:+ˁt jQN1Xk_y;7 7,B4m2_bF6_߻C\w_t,At?; `Vm=v0|/ٹ%˦Yb"-H$0`6f[Xu`]]pwRugE:_=d v5FZp|׫0CW܅gflq3jSFV; 0ڐx 73MJJa˾$lFzJjhz"*LBRP~{ھ2O,ޛ|1ŋ Unå(No -dp!h+iBȮSf \FǓX:ġrvN H"Ȩš$~r P7jEB_fA iM--\8¸b*k.}6rBey`l>vM$՗pؙ` O4Q<> S^k_` hI]o` <%xLj[ sk޾LO;9Guފ\mZr΁Zw [ /kQ^6jX+)*%@^|z@Š} FN_AHSLՉ%Ú$8F r7eݴD-!0w Δ*xɻ&tR? hF7iPVŞt4o%4e~[ɨ3YNףZ@5)T]q`#+UGQἚهSU+YˎV51ZFGd=Q|c<W7yrvŚVgIeO"Yjs`6elH9Ǖy"pQFyfJ9vxҵt^a Z@j"\7!T!32ӸDT {1\gCHN Z~ mAm 趑[.fwٺMk1M0Zeo?+=q¤LDV/5Qו U%eGjycuOP5Ya1NǸ~rw24OOʬʀ#i(VKWFnJRd-*XmvF&1 ^:ɬ׌2f#qyhB }:KKlqQ+32FH~dbTV!p(3P@}}:`.rxyYag]N`GAC SѢթ.~&>3'elc:{zL24YZZ E@?ՠ^ ^w}g D({i'cBy,^z&w:;-S>em7A>Ѭ o?Ǭ X߇E)B"cSўVu5%Eɏ/&9 \MmDaEA+WCB =GEĻCμߺ2[Pr4+蟭+z6("$r3f,Wȅ뙵VMkl/+`ȑc@](̘`o-n5Я_$ҠkƗV-MxP W<j :Ud٨h"חjCҝ/ΰ"#L"Byi+^k(V?5`'uRD[u ;Nq>~c5,bql vK@IщĸBSF\\D!^C|cC`cAq ׼>*Ց j fy+WA`Ao{(L!KԤh;s#RrmXvpL $H"kj\9/srBgYUtBDgQf;Vzj4b[ZBYb;bCR/AǺn;"5a#ȜB-K]]?&2]ŇlOOv[Z% |‡QZkXځ$^Yg9{Ÿ @D[h=O0Q,yi*i:l*/Y嵲0+V!X̌۔5pP໿Ju9[ab v&aUP:*yt .T>N~@!f>ױvقe&q#%)L?^COϰE n.|{u&JdDPxn== TI&:M3M! 'X[mQeYg*QI ~dO}Ajiћ8,?)SB]:{tdm]v *ڧnDGG#pƬ>&xÆ;zܭ4+:g%"/x+LdrR;uGV YZ