python2-six-1.11.0-lp151.3.1 >  A [pR/=„jFh  n,_\uHsfB"̸$#; x\TqD@NvL<~;bӓ`eʩ:MyWU:fI 78)ye^&Hէ rMǜ#<۝pK v'BG٥B6ېYSgç\ɫ-R cʠFMQZgS`o Ser0jيnF60f1cf7ffce39693d3b901377f44559a5e7e2b855e0034aa502cedb331a51790a0a548ffbdd934b87ce1958641cae346f5321915bs[pR/=„@C}4t7^%Iq:jںEbo|SK0i˨@tQU:GfW:i%*|Ks,.f1MӍԘPP ui\vaVxSȰ Y# ֜L&an_wpǺղN`t"a/" Z88mggOG&G}psOե u;XJ_~ %j]cg=j'Pa3U$u >pC'8?'(d  Fdhtx    (  @hS(t8|9:=#RB#ZF#eG#|H#I#X#Y#Z#[#\$]$(^$b$c%d%e%f%l%u&v&(w&|x&y&z&&&&'$Cpython2-six1.11.0lp151.3.1Python 2 and 3 compatibility utilitiesSix is a Python 2 and 3 compatibility library. It provides utility functions for smoothing over the differences between the Python versions with the goal of writing Python code that is compatible on both Python versions. See the documentation for more information on what is provided.[p>cloud105openSUSE Leap 15.1openSUSEMIThttps://bugs.opensuse.orgDevelopment/Libraries/Pythonhttp://pypi.python.org/pypi/six/linuxnoarch# bsc#1057496 - egg-info changed from directory to file if [ -d /usr/lib/python2.7/site-packages/six-1.11.0-py2.7.egg-info ]; then rm -r /usr/lib/python2.7/site-packages/six-1.11.0-2.7.egg-info fixx2x2"*HA큤[pREADME.rst, add CHANGES - update to version 1.11.0: * Pull request #178: `with_metaclass` now properly proxies `__prepare__` to the underlying metaclass. * Pull request #191: Allow `with_metaclass` to work with metaclasses implemented in C. * Pull request #203: Add parse_http_list and parse_keqv_list to moved urllib.request. * Pull request #172 and issue #171: Add unquote_to_bytes to moved urllib.parse. * Pull request #167: Add `six.moves.getoutput`. * Pull request #80: Add `six.moves.urllib_parse.splitvalue`. * Pull request #75: Add `six.moves.email_mime_image`. * Pull request #72: Avoid creating reference cycles through tracebacks in `reraise`.- update for multipython build- Restore buildarch for SLE_11 to fix build- Run tests in -doc package to avoid dependency loops * python-setuptools -> python-six -> python-py -> python-setuptools * python-setuptools -> python-six -> python-pytest -> python-setuptools - Actually run the tests. They weren't previously being run.- Update to 1.10.0: - Issue #122: Improve the performance of `six.int2byte` on Python 3. - Pull request #55 and issue #99: Don't add the `winreg` module to `six.moves` on non-Windows platforms. - Pull request #60 and issue #108: Add `six.moves.getcwd` and `six.moves.getcwdu`. - Pull request #64: Add `create_unbound_method` to create unbound methods.- Delete the system egg-info during pre phase: older versions of the package installed it as a directory, the latest update creates a file, and rpm has known issues with replacing this.- Make tests conditional to avoid dependency loop.- don't build/package documentation here: it breaks due to cyclic requirements between six and Sphinx, move doc in its own package- update to version 1.9.0 - Issue #106: Support the `flush` parameter to `six.print_`. - Pull request #48 and issue #15: Add the `python_2_unicode_compatible` decorator. - Pull request #57 and issue #50: Add several compatibility methods for unittest assertions that were renamed between Python 2 and 3. - Issue #105 and pull request #58: Ensure `six.wraps` respects the * updated* and *assigned* arguments. - Issue #102: Add `raise_from` to abstract out Python 3's raise from syntax. - Issue #97: Optimize `six.iterbytes` on Python 2. - Issue #98: Fix `six.moves` race condition in multi-threaded code. - Pull request #51: Add `six.view(keys|values|itmes)`, which provide dictionary views on Python 2.7+.- update to version 1.8.0: * Issue #90: Add six.moves.shlex_quote. * Issue #59: Add six.moves.intern. * Add six.urllib.parse.uses_(fragment|netloc|params|query|relative). * Issue #88: Fix add_metaclass when the class has __slots__ containing "__weakref__" or "__dict__". * Issue #89: Make six use absolute imports. * Issue #85: Always accept *updated* and *assigned* arguments for wraps(). * Issue #86: In reraise(), instantiate the exception if the second argument is None. * Pull request #45: Add six.moves.email_mime_nonmultipart. * Issue #81: Add six.urllib.request.splittag mapping. * Issue #80: Add six.urllib.request.splituser mapping.- update to 1.7.3: - Issue #77: Fix import six on Python 3.4 with a custom loader. - Issue #74: six.moves.xmlrpc_server should map to SimpleXMLRPCServer on Python 2 as documented not xmlrpclib.- update to 1.7.2: - Issue #72: Fix installing on Python 2. - Issue #71: Make the six.moves meta path importer handle reloading of the six module gracefully. - Pull request #30: Implement six.moves with a PEP 302 meta path hook. - Pull request #32: Add six.wraps, which is like functools.wraps but always sets the __wrapped__ attribute. - Pull request #35: Improve add_metaclass, so that it doesn't end up inserting another class into the hierarchy. - Pull request #34: Add import mappings for dummy_thread. - Pull request #33: Add import mappings for UserDict and UserList. - Pull request #31: Select the implementations of dictionary iterator routines at import time for a 20% speed boost.- update to 1.6.1: - Raise an AttributeError for six.moves.X when X is a module not available in the current interpreter. - Raise an AttributeError for every attribute of unimportable modules. - Issue #56: Make the fake modules six.moves puts into sys.modules appear not to have a __path__ unless they are loaded. - Pull request #28: Add support for SplitResult. - Issue #55: Add move mapping for xmlrpc.server. - Pull request #29: Add move for urllib.parse.splitquery.- Include in SLE 12 (FATE #315990)- update to 1.5.2: - Issue #53: Make the fake modules six.moves puts into sys.modules appear not to have a __name__ unless they are loaded. Changes of older releases, see CHANGES files in the Bitbucket repo at https://bitbucket.org/gutworth/six/src/758cacd651f3ee8c9eb2253ca3905a1d46f88786/CHANGES?at=default- Bring back argparse requirement for SP3- update to 1.4.1: - Issue #31: Add six.moves mapping for UserString. - Pull request #12: Add six.add_metaclass, a decorator for adding a metaclass to a class. - Add six.moves.zip_longest and six.moves.filterfalse, which correspond respectively to itertools.izip_longest and itertools.ifilterfalse on Python 2 and itertools.zip_longest and itertools.filterfalse on Python 3. - Issue #25: Add the unichr function, which returns a string for a Unicode codepoint. - Issue #26: Add byte2int function, which complements int2byte. - Issue #23: Allow multiple base classes to be passed to with_metaclass. - Issue #24: Add six.moves.range alias. This exactly the same as the current xrange alias. - Pull request #5: Create six.moves.urllib, which contains abstractions for a bunch of things which are in urllib in Python 3 and spread out across urllib, urllib2, and urlparse in Python 2.- Run testsuite - Build and package HTML documentation- update to 1.3.0: - In six.iter(items/keys/values/lists), passed keyword arguments through to the underlying method. - Add six.iterlists(). - Fix Jython detection.- Removed openSUSE 11.4 spec file workarounds- Update to 1.2.0: * Issue #13: Make iterkeys/itervalues/iteritems return iterators on Python 3 instead of iterables. * Issue #11: Fix maxsize support on Jython. * Add six.next() as an alias for six.advance_iterator(). * Use the builtin next() function for advance_iterator() where is available (2.6+), not just Python 3. * Add the Iterator class for writing portable iterators.- Initial spec file/bin/shpython-sixcloud105 15283937901.11.0-lp151.3.11.11.0-lp151.3.11.11.0-lp151.3.1six-1.11.0-py2.7.egg-infosix.pysix.pycsix.pyopython2-sixCHANGESLICENSEREADME.rst/usr/lib/python2.7/site-packages//usr/share/doc/packages//usr/share/doc/packages/python2-six/-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/7f9c1437d566be1aee2858478edabf80-python-sixcpioxz5noarch-suse-linuxASCII textPython script, ASCII text executablepython 2.7 byte-compileddirectoryRRRoD/Zcutf-86451776d8e5e49a92ef4fb795559f6fdaab4bceb3e74aa2631c05adf4bd53c44?7zXZ !t/H] crv(vX0{ (.)q1&_zAB͡35K$MJBz9GN3NEOi_yuy&ro(oNxj;1V.~cC Ԑm+'g{C(F=.f$2>F#tnr6YEZ޴h !ZR`}(, vx 9(Y+!mHE+唔|r`bYvapgpY2 jg%_YlwL{T6Y9 M녪ymF̵N[aҌQx(bS+/u [H+s/9;eQ,(/,]Ŕ <y7!S3Iǖ ݈>2 LHݳxyfwZ"Ք im7zPeD!Vt<{8a^):"VNبS,:*noLt]C]׫& F^˘z0D[3'^}+4 }n (FT4~wUx7E芻. o{ XA&L:?:[ʜw^Tu3͈@`=І(?_?[l2f.jq눘WG =}smiaⳌbYWBY˔lYDg+:IZ PU͕B:uaXVߕmuJ UQ 9ςJ14`D)hXUҘDmK&D-Z|Fc7ĥ#[{m_D0c^MZk??&jzyBH4}6~ux3REﵾ}^f`QE(Hė,vJa\ {M@bd)KV$ 1š{,ȈzE͹')|f CY3uhQ~"ǟj~-<7gyP tHz6=\MSQ ~|y8n3p`F  kZm{+M `ޓH9P9כw>-|Yhn5yT}7-yM<]yS['o?:{!yG*7:>mS`65vSwҧqVwk ,flml3b=K!$M%x9Ysi<[>b_z"HB.آ:"ã`S~:`s9<f 9CMY~#;xq̢8R>+~8@X V؁ZA:MԂb=b<:A>p;)8FF2aGQ VU[vΰGnYFrMmTՀB+/u0O`\]MZRp v:*xїZ|nu}0aOW{+^ugbc~UZû3uɦ@&ǘY4rCJ ˇCX/g4$g7ى2WQG2W;ْᚯ-˺FDr h z8ԏX\>K$}w]!UUjFx"1G8 orH()`tDE+G$4pBN>:6^f5CVUAY3ӐHWcH,MZ@M0Vg{P> ĢJ a틖!L̈́g9گN'7kJb.eчiƲ|YQP(AKXrÂݓW){8GNF2iv2EO=b>F x k2yI0e)ڑ+1R] xLHiPȱ4BGk+OXNurve}X1ζ;87֘Uʾf~do.06vV-.uO&;ފd>1sE@i{nMܖe%l i:lC)IDJQ55ǷB?W̦0WI ^=ˊY?eĿ'4!-YEǗ譌qR^-W4Ԍ vZxIUW%ҾFcxa̬l׃:a^*NپtЄL YrzE>^Jת$0; pX ^<ďnK:ē?a sz\tDw0Hv9KV=̡i4J0Ṣ2*SKRYz1_LaV0Jgh]IJ\$BveڷFSms9Yֆn<6;P +o*wF\4x`mhqv˂_(\o~7bc|sGٳ~HO/t܊w9!TO^xZAE:~ N~9"m 죚]bjM8N7LL 3 :'^#c=vpYuvb 0'cw:>7agG,mANOk`_\iƫvb/d8Chڎb!DÅ0k杰oN׾3<)T}]Lo m0lǘf龌1i[sZaUj pS8 ӠBtzyk女<'Ll'C]CR`KS&-G:ў[ޞЈefİY?;#{drg;[Ҷ`"(ЭǦoF.d 3~c/n* ]ߑB\upyt.Z4w}jx1!8҂tږ?8אsQ20tD3P97Yc/top*%KaGC%~pobRR/qT%_̠G :^{tk}!n(`{'9Ciy pbBxJV6j@t<@IQrbqP X6i$g~P' |ݛ>. gϞG쁆SB;\}k5 mǦf?=Q9xa ;=$: eT 0[:Հ̦9Ǩ{`&u+oިfVd9\]L=2|]m+O7z xB]חJY60x UrHX^/iGp7/E|MZI&J MMhL{wAAh˸ }UYgg>B8M6..lZ1fУW䐜!(WWq&)<汷 1#ٰ{vL|u}O_f9Ǭ,knmMd{PmN +)2`_z}Ia=1T,lƋ-Z1?в/'(泀z- Ga%s1#r[2tLФC~ .CTk8d89k8E NO4r|`#;i;q%v@\ŽˇpL6qm?yd`?D5grpM~tutκ9Ŷ3(|{O۸e1|C{fT+tANw4i9er3]^JHٚuw0JSV$) @awZݑ3r:~l5cĆ.F5B|0uu:9Lg[QTR(9uZGFua1_TŦn$^E\jnåWH Ka8Ƴe! D@"}7Ғ0p }? Qɤ shN63,:"zu% @p>} rI7Ɋ_h3dB{>[sH΁N` [mdp$^(mќ:_ڞapBOC?1衴Ϝwn_٭5õY)bÅ)MRY~)z@\e8X?GN\!LnR}ХF`qv,@@y/ǹŦbᜓ$5;Pi"ֽQ%jUB=Pc wJ!]pKa%G;%Fd9a fdAR,y5ڠI1GCQ>j(&U\^M}aD\T6yU #꧐YF96U_Ȼ>U;E;17lxSa<L~D眞T ̣d3pP#77TǕXA7?|v(h3ضf[ۍ:* $˓ˏ#~zݸ\#y`eA_,RDH໰iuw6oZ*ZZm= +2l'IT&ov}U-~w%MqLA08Й7)棄B:x3(p:8Sy|?q¡IEꚨ02eP]y]mhqT2vSU nя!\:Sk%^E{:$M ;أc.J]ѳY96æPr>n?{w|VTD_<n%?K4X,2Toh&%[9D*~.%ho}r>mxhfWhژ b_^ $10wGJ>E93 ÝxT|,Rwګ82=șC8xMɥ65tOUbèizAN@W6Snp-%V$AU9=r:54,ZB{ͰO5tI$;>3Ht#) 6ahAS%l?uw=H.'ԝ#rq\G(2t%h2By*Uy@F,-K.<*c|;-6U̓U@-JJbnq-mGVZV^ $04SX FCJdH'loP脺(hTg$>c'نUGhҥoG-d}LFAbL[ل ԛȿؔL:bLĄ[֪A;Byʗnzs7YM) 8/,xs 2 =yB(8s 5;6 Y)u{pJyEʋSvܠ(iefΨ뎠u%'11[YuaER ȏ-/(l$6@7gE/Ag:Ȝ:J~NC<ɔNMp̜(\m lLj^?LM {М&s;1-9lfmS[q]w˧zR.[h$vԣzWMV)q9!_*r@ٟ{_r@އzl8鋋M$ÒO6> "sE0~9,:~3= Ũ4;|VlB)%?IEϑuh6OeU8ũN,/[p)6̃Ż:Ee;сmM\-]=g|]IqQ=3b;_K)-2My<lсiW \M˾jåˁRy}szNhvTy'a 8OE,֦V;^YڀbF9<'42t MA!n1c/ߋ0tsvva6Pо#QSȃ!߱{-W4\qy&~Pk}S:D{]5Hrm5гE~|2ƽ){,ReN&J2wÁ"hl0Az-~5&ȃ)tuL ҉1L䱧_sb&}-[ī>Q ɶgo:+f;jmT.ƭ-%:R@6;J/YO6OO!K4=e<|9DmdBņ}yvUP3UJ&b[-Ż(o?@+$ o%I`BA4Oi!k;%DS-Qib#zIs 䘯s.wJ|a$c Fq* Jh<BQ l_F--7ޒR[MM6g2T[vsOj"[=@HY] svS֦±Q1W)4n1E\g1d8^cB73YY6տh7,Ir"˘Սۣ!5XUrgMe >X{Z,kl|lkK? +w#qGcǿRFJ (:cW~Z"4ϪdsPbR.y,`o- zMo cQvI$MzR iedKCݳsiWHSv/6 x矔Ǒ(,1J0jm5:>Z FڤkQ^d'avdgKWSo| P]gcB.=o'wYY!Eiڮ19N|%hn|-j :fg/ $;t "p5* Cdϵ}IkwG`U]B 3܃[RB"( S+3M~ZN$0]T" T9)OW/::|* kqaɟdbDm/ ܳA2}{E>K,<'e+k~,2RkV ˶ Kr !:"`홃ֵSذAF18,7ye4 dev'3۳г+{(RPPzC`^wgT<;WY+yJ&#Nz;LBQԫ{cQA-<*%8B[M X`Iֺ% 33g(9e]"lP) }R6zvE_/X{’oُҊ '_hn 9*`~n rըc Ɨyo~Mc$JJ$AMR =>pѼBVCDRm`hsU*0H3oPUi4gRw˨ZM H.|0 Jt׈Ÿ8-y >B;T1X0nqO b;Br5ؽ6 "$qΑ /qF3 ,u$h}·XtXyoi>EJZƽYO [MШޗ$ƒ1:i oEYrn;d63dt>hRRdHh{,ؠ"g#fIm*Z9{}Hz|}A 5&uqm+zy̩jHk-uU[dRNj}/,yF^93H=5 t>ԂhߝpHuE褚dUx=PIJe_3A7ٱ+kDcSPJRJ@rO_0Mqo*BxfC%dD̍.W)m4ԩHE`R p ɛ(Em;6֢ [2K*(T&:`b'|CT8/h1u7Gja _?m^<-Xq=udmNת),I|^skBoX*Qht 8<wFKfqg7?wcZlշ4 J{u aD :c3[9Ct,)|88JO;Xq=$d~vH@#JbF@Q) Cg]I6&/CdDHv%EW\s̽&$ 3 -P]w,Cp! ţ*iVkA-Uq>r LV)y*1 c-h|@ 3oIWqAYͱD nye\jO<z,EM;D.Pԟ?%c0}kےOb+,S FOYмhj(!DAY\Zx PT5ڼDJUAh*Q "@ݥ٪cL"ր®` *YVm ۲ ]=~eR4Qz_ 59!Pk+kO&B' ٖ̠`-Kb:wY*cOXբ%{j{Y]^(;S[ws|g@jlc5<)Dln[[E<ܭ"ǖ\k8Wc{v0-`iE4[ 9X"BJL JWv;UV_k0{G:T70L5OD_w"ɱ#hTXP( yجKvAP&*d/A|Q?+ƽ3|ɺ,,ʥ?Zζ0P 7W?۸z!:Op}16^MZy^NxϼjId, j|*p;TB1N76] hD@aZ5izp9Q" 12>CI[gB>HAO򷒢FK҈#Ŋ\982ӣB$_(s5( K!0'P :{V?Ed.ms}`Y}^ 1 S^+=.rʵmW#o6Y"Kz'n!WTOʭg@yҨpt Q֯60 iSO<rLD%Yۓxu!:[^ c~1&DqFzde>2~D.΁%yִS R+ 3 @;BhWxW} 0G3.ɲܒπvzWȰDK @`a:ȕ>IUn)%r\mFK7>- I#3Z K!nIQN`Y7s|L//ӟQ x <jPW럆9JuNJUȭHtsQZlo)X xm%o÷4t`1M6񝯳0%Q˨FDH\u| WQJԩ.d4EӴ^!FYBlVWe`69fX-@ﻔwkPKJdHˍ;Z^951 =UG,-F8;dYٱƱKr1 iՙkix->o9>"3-R莯D(q {񺥖r)\ 4ه;9yOq) Ka=X!qE[JT]nom~z !~3|XֲZTB(\AG*]?.ъQ]ʡյgP @@ pb 7neBF:H2l "տ؎GBA&kҳd ||6( ^/'cXK{a0ō~| 1Xn(QI. 5WKxm>4܍DZjD wϑ?P*U-BHS]i*"Oֶ" `oOw*)\T  k7!DOi鋡@(AW4ūj\q[;UX,Uo Ɂk _f&.ɏ.n^k{cˌ+bsMM/.n@+6hA"뀵BWZ,?˜*z1XP+mB\ 4arJ͕'hym #OR_A^p__R$Qi1 ؜ӓų'U;z%Mݨ^peM{ )u0VM&S%d,ႮMV.yҭ6΅aWԸxߑ]4% i7=Cc 0:Kr#r^jm}r]NeXJl:e*# oWt1; 8'Gh֨1L\R3{~Z}D|Y W!:2vMC~b+IЅHѕ'3ͩ_HOD U昗9y`T?Erj BS;_./Y TM _+SQ}LڂՃaH>̓2J)L^z7hoeO˱z섎Oc[ʮT_[C_x5u'Cܗĸ:7qJٕ[jfPQ;70YNܬ|}$J4oMJoTSgLH.'DuI[Gy>gʣudD#I ar?pآ aL?x2 r[CN^Q@޻Nd烷rw`D)>Ywӫ?Z ]lZnjA5S ,D7cd}}T,6`ћLFr9Qg|E9E@ir+9gv^ϲ&ބ#u؃~KqNqxsǐ}j%> .[0%b.SEMigs'n@UUbZyb @mMyU3`-CFoCi"%Pjk> N{wd 6SBT6ApʂRh@隻@B|^L[ 1Lƹ-w:u Ƙ*NGh=O%E /^ ;OLj˓ ='5(즞[>( }WO| Yv]L}9qFE"J7Z5Ќ]1VB{nk_ꂂwϻ2c;Xb¡k ppWʝ40?};&dmMhc QY`LtR}D5n ohfy4Cwɔbr*gFuw,Ě&Z#Gf \ o{GG^ܷi]^1gwN?2f.0e~r#v@drKqpfhzz pf!f٩mZ{4VeV^.aCW܊լyO<I" 6`]AUzkb55"0_".A`t_AS/e/H=_0hd|-c"53p0h|>[t:s>xO]8S]Ř vajt fg+`&"? n9N"R:?hsc77%5!5_evyCtc\wPXifὺ^mBrw຅^OCEM16y$:z~m<fQHܫJ=[D@Axo A5g Xq)":i[/'m,uG:'e$,I0LV5AMdR<e'4Gj|P#*4A  <7@ W-@ yG8R]:[:OlT|5AXu;xu7Uv<8K#> t,F zTwYx;ܭ0IfAj`H4zv¢O92iIMsrs=o 70@ y4߭_N01 Ӝ\. "1Ӹ,eH<4BO3q|I>[Znw}#XPv,C#7 EݪztеXB,=5*[ةb b;&+t?@CVe=AX%ZX{x ~=2nkri^j7ERY\cgUۺ~֜?$.DI‰r;CNbsPG_@iwekt"XNy%@D..10K vkӝ)hF9-6 U7X7Y/n!zP`Sz#>/b˼7E[$lܔ0?7}E^7lv"9$2 mH-iIJ'q+\DM;BOn:V ?mXP[Lṗ" _3JiōZ;XQQiMf챑ǎj&x 03'Ki(7D",glI:C3хV@dwVAo Q ~q[i!?R \x`ʞba*ge*w 4aHfQxTQVu@&F8 PP@Id/)z3JP=#jX .M> )} }ea}9]/I2Om{6UC{h,j<4)5Xv~4AJ{Qmᄚq9AI%iu)):z.h"`Aב*S6_N#}siUŌ$֮%mMyJ 1˻=ډY3[me4 ;f?~5/i CH"Sn-\QձzCNHLbTtƏLҐ(۶ YZ