python2-decorator-4.2.1-lp152.3.3 >  A ]5~/=„[҇ (=FJ8s7*2m a$vȘ4QLʹ) !C 2FtrHqWtGuSlGڒbb7@xn-;teG_Ėg(b{&mx (U؊? ͇e;T1Ԣ~I2KGA5-_^_N΋(h*j!L^'~n%'(m,!:v؜f8cb20014e65e82371af7454d155cbdb2f413779e79b5d07eedaccd957e02188fc86ec171e937678133a674c401b62cfd32532c3]X]5~/=„6 "tm:n6 YMuռ%)=ӰEZr!N+oނg]nYiH>Yq<pߌj **_꾊{aCؼU(օrG<`ba6%lW}@n}+)#/$9t',pЀ  < WFEq̡M$ܵrb*e&d?o D-ILgɌgZ+T+C>pA?d $ Q 8^dl    " 0h X|( 8 ( 9 P : BVFgG|HIXYZ$[(\8]p^:bcdefluvHwx yDzP`djCpython2-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.]5pcloud120openSUSE Leap 15.2openSUSEBSD-2-Clausehttps://bugs.opensuse.orgDevelopment/Languages/Pythonhttp://pypi.python.org/pypi/decoratorlinuxnoarch u/ @99!RA큤A큤]5k]5k]5k]5kVX{A]5kZ[*5]5k]5k]5oZ[*X{H]5i9fda057706286e43f89361bf83ce6a24930206e087f75eace2f12388534b0389de7fb6a60dbf285f76198cd71a7500cce4aa95028dfee96d1620f15076159c5f01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b00bf38a14516407c2477c3823e12d1a363498d4e4c0dd99732a447bfea68b2ab2a7e9e423a3cddcb56c5757204c398b74fd8a634630739ca615b8dcae0bf0d2210064aa32bc804683d3dc0e7ce033debcf0e6b13cf8a7ed01b1f51a14f9364f8ec19a3054ab3e722c307f1f153f9cc6f620167782b5eb88e8daf06619b8222ad295d916d0929207d752b733ae075c9b96958686f2bc88a771ba8b2211ebd5e8b228ba78b4d9837400230d9924f4ca3d84ed14d8cf3922198cd3d0c907628fbbec9fbbd46d5af040b2b26db2f693034c95de8e9faaaf1cd68af358b092a56d4545c841c4591be5ec522e3bb0d2dc3367beddd4b6b023ef9507e0d656a50cb4c9frootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootpython-decorator-4.2.1-lp152.3.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@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 changespython-decoratorcloud120 1569011056 4.2.1-lp152.3.34.2.1-lp152.3.34.2.1-lp152.3.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.2/standard/885ce56aa52620eb40f25a641c9a0c85-python-decoratorcpioxz5noarch-suse-linuxdirectoryASCII textASCII text, with no line terminatorsPython script, ASCII text executablepython 2.7 byte-compiledUTF-8 Unicode textRRR--Jutf-8d1c5dd5b21782a6879dc7cb7a688987ddf97e591ac2d93a6661882ce50035f3e?7zXZ !t/:] crt:bLL "p- 陑7ZmtLKNYcD&AL̇gy?nPkmn ߧ}4wiqTr7NGQ #-Bp /,?1u(vѣ w^=crr"S:(jE(_ @.-7a r,s +FF'~$-[<,f Ze&'mе;,crCc;0)Bn):vm&Ε| P|x0AVՀ`;C]N@ҥU\4* 6oO(Fn.:yVUpsXJttv9}+x:>J%16Iĉ )z^ {v+!]2<[HoRK: U> "h/6}9,B]A d43^ZOy!2x^[3! vp2_OcL)M{ /wlek'aVgJ aӃ"=A`bQQ鷪6e>$Զ-Q8&>9mEz̋a_t73:MSZ)V&ʹϬ,!y3L;yɟ ֍%mR`|?x!pN;{D̀N(Ima,0kISډ;>F҃n=wd$xc!? **k\r0"͈YHҟk  ]5 =+t=bBP< Cn-oAvHa,] 7O[OiFM~!zC95޸DL ی.B̓t/ʸ"Oϴq>Ϟr/$p:T!QϞU섢΋Ъ5<P._g#G3 Kt> lp? د{c:E){KWRh;i-xJhM,t+-G[Ҟة{{r8{/Z1ʂ_m GBQ% ~Pk:)<DNԡ7Ѡ>"lm+qwŃSDvhvvtŁ:icpr9Su wqݞo$7eb@/x0|u-'SGyۣc:LvjyVii9[w`pvZ x^ >Rì*BSCSP$u5|m&kDRƁOdh^k4Icn# |~]A7֮)[pDqϺ'j0 Q"8MV[Z ӊ,e&QTR, W V%?4+>`Wtb'3LE$O~tijoSV,`MX} ѻ[SI{L;24UY"|o/7T`ɼ\vM]D.n{l~-(F苍ϊO5s]_1+M#KĊ*(᝸l f@[w$C 54Hs÷Ym`$R~ CR+WNSfY4t)}b*Y!ʦF%c C9n}xkÛg+ UgG#cNlʻ<(BKA9R Ld-L<:dGzs ?n̊1oZ&n'?a-oD#=m|OØYy;V:+I7ʡC2myUF#(L<:?0vGBHf/^ rQN)"foO+V0&nvnv8:F d"Q(mu 㱕+Ķ6g-+ " ]oRp.4>HW7_\60scUDp\{?ePDmQ .2|: ?'f"għmum@=AI1("+2VQcIY#`ԏ0{' 2)ZIz lNHzRg52SDUrry$E5(?76m ?Rc{8Ӝ䦯ӾQ'=JY&r(-WtշwwrYaͶu ήT`V {.hӰdνpJ_-Ӽur@3TfWruI xEV4h.KG?ɛ'P KNw޲^q9L]FE*n$؜:#ɘJ1`SHhn9]Pݪ.ST9גV" M5_[m:&jrhmH՝ouf+/p-Ȝ(]U)m_o_9BGfB[Lwau(% 꾓ha@DF<ΰ=˙9tlO +nh T>|t|_E7`ݗe=Lgw$7$ &o-e quC%Ld+@9i|vᒔ;A=weftN|ŴDdI ia6Wpkyzu$SfR"..lp1e[lr\@i|y~/U*XC8H7OOBZ%X'j7m[׆3T$([Ԙ q@`.$ޡ='xTvd[}b1ITezHqiaOfw*K5c aN)|XCJ\$]mVWiY8?s-P< 8/6ٔɸ;>+ .2jzkw/;;@=ٲ0ׄ3Ŝ:]Ns 1*\ n]q+EnH]wydaiq t;Qo _]ω.K$2M6cH}[c ?li36uRT򖎗t뺽`9'up3"D.%='a ǴM &JsݼkD3HH'M3yp8M׋ nCErR8PNξ>u4;y_',|<ʳ7(pe.zvT)֯s1XDZ|ga$BV+AbtX^3(,4i%Aǔ5V[?]>эRi9P|5~%CZ=ZT^W?6)G k .E:Y{|4%O$EZGޞ"6 [5,7gXq{W,]F.!A}[&(f)E?/ʮC\K A C=(?#,ۮ6YӴLe|ĔՠeZ3J*Tڬ)]V9m\"D_e)t+1>n.H'a+< ?{_MxeR][+\VM.YN9(ױLV7aVAdS몞>u0XϢv@vD^I|LGn4۬? LN,Sn'Cpnk,Dπ!Ŀ(hN?$.|^F]Bb5$D>G}*Vvp+=Dv:4Jx Q6NS,#ow V˜UOm6 tȩF/4S$uϛ`W L{#/e`:DMG@v[P)5N0R9z bz^'QLK -*aMăd>v7/xj9ƀ ȼ8uޚwjbiu8g3DP|1g{l%}_pz+DbLO,*K'0PSpl`10WM]UO'8l|@ ~174{—AqW^wTuR ߗֵe1j7oi!iJݍtE?hm^甀aߨF"li/K?.&dc̉eaƋB]H( *ѬQvkLbY;e9|LGLPeű(fx>&i`LUމ 6F:0(>A#w5QŽ)y=5֒fmm+ְ{p>ˎA-ӑi$%PQw5ϞF@iUJ2/ocMqFΓU;:C[266 wmĵb|m-64GDi4{e1{VF5LͻѪ3tn r3Nݻ =| u!ZUAG|$2/\}D#+C}XpJЦ#ߖ׃|躥&ƾMpUFۄ6nGwKŬ3'CdR%VU0X(پCu~0qZL3u7.=8}Ϳw'ne/um!/tIPoˉ}fC7T5@8*]biY a[M6ꑤ ssΝ p7nG=r~E.Mp IElߒ+#"O3j&E!pq 42O󧯤tga[3nIiadl'Wi6f> R~Ny2X %`c8U >8{t/LgX^ oKD3]3_E(V= -ϰ&cw\E gsqݡ<:֍ 6G^zy- B'!0Ԭ?wtИ 4k@By(lMi'LM(l?Zn: CM\ҙamcj52L~Ê)ftϲ!Wvf7E줨38xf[8RF^ԲA Q0][ljxH^ Ūq2XK_X߃gK7ly{#o(%Wt)c5e*sQezw/ h_DKCrd/jsej '˲gmI;_Ͱؑd/1z Ya~\sPA{|^02yvEbŌ9JT uo+z>s ɽn:A"R|j^DHcz# ӠxR#CEMx'~/M \g?CӋ~ץh#frUoRvknxoR'Ř e`A!#QUxf6سyZ,J ݐ%RSMzD38-*/5<e?_5穐Տq oi{LG&o1arhѧ)Z_R[//°45QNQvhAt"h K lAi*94 d2bM(w}dQ)Z vK$~A-JɗqpTQ ŔB2{dan#_˹v|ByT]VQԗޕ{9"'@ 0}j'S x0C\@14k: ~0偣ͻKVfgFȱ/@_h*HdЄv̞}N",Tc;ڸGqv:7;[2yEL)IC3tNg()u1To -b Y\c1H=%-ir"o鐪VQ+&9Vfy$^Ѳy7vj2U]Epk#ԹrL`!;QS$w\`Q)]`}`0/joaoW$49*3?;p a(=U/wՆpcoy<e|YQhO*v#ЯK0#td^H=!/AJ.)S5\mCajP֛"$IxTM8װG=u@V 0|GrP2 GUmB3]yhCC ]gXT˺'3Sb]߳_|}"믮d"'$,>5 U/7IX3j[O^}r,`i`[6N}˻֫H YAĽ&:J ׃nGFx6ICwS{ub /.JIbnW60km4!wy~f-+;A5v21UR?-ۂ:;cH^I|25, h ٲDhF~vF&iBe}Q\aY](j~ڹgY&Z !yE wgW .0UF\j4=؏h`]+(* ܚ>@p y wLJSvGlwPA֝?f|m )v#cąvhr&h|yU4%akͻzL.@Ag0?•h QFxgtqЖ}H~>-ǖԅbZk*bh:fx/kDz'.u V4&cvacZ`9. VO+UI?݊:a}%HyZ~FBgS B]H2$)r;GHFPg_7TQ솼>i}-8 "IZ֬4T&QM' JdFO.Am#<#, Koq/I7Y \T1"BkM#9OW6<層o.r}k-= fQOo:YiAfxn+yTa1΁ڳ)Po_6W:E!lv duLEd3 *0,Te:9ժPeǿZ{#o\۲"/Rx-۠:]-1{X@aVu}w'9Swp) ]v^qLsf|!Ҁ7]{-J̹$?hEgTv裞J}!,dz0ަDDi CJLmm_aeh@@8PJsl{:GIT*aS}Ҝ)8(=>Sqw^Yn3=ft xHsp;?[e$U&<ש\/@gx"Xσ*Vq`jRԔĥٻ-]9 +Z0""^7#6abZuhq$#["ёA }h{ Qa5`%s@ym'P z~S"μ\[FmdZ <0W5E?^4=aQg=N/nUꬤE]'4I< Sq^H D. GoKղ"œ~}843ioqI|#9X=N*BAڗ( a_7(wwtac%ddb>iR%ISߟQ]0jz3\'boߦA `<0mآL1{CJp8h3d[iצ"6oΕo,7dO|`/,/Jp ^tmwL*H+塱ZE-hY6W0$8o=>2'YvV".egϻ4lb qSUn(|yE_:-Z,XFR;n{ 6wJKƅW%v㬆tG0eVNB,?ҺETirkLabo!E jyIs /AJcA"24X;I2LlF{c4BTra.11vϦ:PMx u<ϡeL^JV AoDE%oBۯ0 mڑb6tqq222CҸð)rtqB[:h L&#izivEIxkQN}x;U|*+'Sn(aonn' \DLOO=Yg1ڮrG]O`_BI7O[Z-~w…}eAAzТg `Z^7l8 J`tl"?lV{-c'Fآ n _;585o:HJцdV:cyVPa<'dOL]EU C[Xsiqy-XXGzkxI᪶O ;tuoyѺg@to0s2 L:9l=JB;m~BNM'6BNyݯGH*A0ёvc<2;AA.ͦNӫ&V!1 KU:ɸCLs<"*e &O$ SE¯֟WGMᢄAF#eOb1]}̀ m'*hr&R>oѢK\s_ ټ Mۇχʿ4"-XG[/#`:MퟬjԢ#[nt>Fhxi3ZYeSJ =7bwtW\8xZq{Ul 3BDpN^5-GR S-^0qHsК6-4ݸcϸv]U#hN9 JXjy*4x> }RIX=SaLb#C4Zt:Asf4}凘N-4>N!)]$f>uZDm^Ulj=}08R47S S;w H(D*[yp>P^ckh_ 0Iq^w|10D|f 4|U {2[c\9pª6N;!E޿g($ywƣiWPk?2cD?UXfEc96H`:!rfnۏ^%UoRNX}Cֲ zkHeC DM ޷Їo 2:_+ull'Q"?kAY*+488:Y_㤗A/^?^rk >ʄʸ&/<@*;E!Eݴ&C=po y}=$Xu2 Fh$'Vn`F`,d>,*H,d 9!Rq&>M\+Oe~XYe o>.vz(ٳW>oj^޻'뚇:]gdrn rp!^0юyN)83c楹G%}NӖ"ӯ ;O0SGVt]wz6% {w0~~;r#Y+($E  ",M'͑%H0(?ecEc WgˋFKDKGfr9[m/%L0z++!6o*0&V"B"uhsC)1%Ƴ)3$Yy>HN75KB}6k̞4cON̛uRyC+suy6q3ifHk+j<(T0.aB^wj]E4&љ @]ρ= 7)MzȊ,(}9F/ISxY\L>H !b#Qa0HD7ztk}7ٳMWyDAaTzSc9Gؕ}f(3^Z`]y4f]y+.+70зO`:zzeGs*3+w8XlHQœπ;G!rC Y F6sZy6Qb$yp4$avCT:NcRC.F)ʵܧo)Hm5; K0(wZ1PF8Ӽ&.] Ol`944>&})uJR Dtv"@3y´w y}4$d]Ա̇u"L /$Iv64Bj[HO\#,xF>꯵|譃e