python2-more-itertools-4.2.0-lp152.3.3.1<>,8p_ls/=„L 'nF"bJS'H>ZCz\ˍn:SB1O6%NƂ۔MNvM m^2ָO<,r#)dFi./>!FH7cw4q"u<)z;81cަm(UUEK;`+~ t3;hOXvxQWR Yk2 bUݼazusq |.J^8K<*8Ia@>A/T?/Dd + f =CL  <      p    D t  ( 8 9 4: B&zF&G&H' I'X'Y'Z'['\'](t^*b+qc,d,e,f,l,u,v-Pw-x.$y.z..../@Cpython2-more-itertools4.2.0lp152.3.3.1More routines for operating on iterables, beyond itertoolsI love itertools; it's one of the most beautiful, composable standard libs. Whenever I have an iteration problem, there's almost always an itertools routine that fits it perfectly. Sometimes, however, neither itertools nor the recipes included in its docs do quite what I need. Here I've collected several routines I've reached for but not found. Since they are deceptively tricky to get right, I've wrapped them up into a library. We've also included implementations of the recipes from the itertools documentation. Enjoy! Any additions are welcome; just file a pull request._lsold-atreju3GopenSUSE Leap 15.2openSUSEMIThttp://bugs.opensuse.orgDevelopment/Languages/Pythonhttps://github.com/erikrose/more-itertoolslinuxnoarch2#W d:pJZ  Lf-QAA큤A큤A큤A큤_lp_lo_lo_lo_lo_lo_loZ$_lo_lpZA_lo_lp[_lo_lp_lpY._lo_lpZ_lo_lp[_lo_lp_lrY_lrX df0977be00e619b29b5d7625678449733ec5802c5f59bf83e0fe52dc051ca387c1354244a4085855e4065edc5e36b1fda242da9b02a187766ca1b22bcd411caf01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b8197ae98842b5b54244e3a9fada667dd9a535f0ee16370797a24d4ccf07660847c0baa457bbd2cf871741f6e8c9a307053aed6b67cc334a9396f7f8e52a2b3a34be9fa4bd37752996a537a7eec057ed599e5eb2270b97b09b6aae512af6d394c3bd2c7a0bc8b38f1825ebed049d50b102ba113ce4db244da11baed17d52e8187d702507d6cf42062a399ada6cef40d43a168eec24d38299dbad41098155f3de7eb648e7aa61a2ef2fcc7d9ed0c347efba7a1ed19e6f3bff2109a982bcde8ee486312cd44701b32eff4c2847976d2600ad2a3a86c301c7f343f9eac6b41a37a25496aa4bca533af80cc1b2b0fbfe7e19f1651e789edd76d6f6288f404aa4f907ce3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b8553ea72f82017882bf7b682f9482d5a64b71e1ea4ebcc4ff68c0495d4b33e1d5476a176f90d9b0d2b033686084d87bda9846548bfc53bf97987d80bcf6015e080c6bbc6070e32162cf4f09c5ba5e608be6a2f960d0bc24cc67008562c01f8fa7227ad6bef32bf9141ceff355de236a471a31d7167be5a8a440d23fe73770f2bd2b67bd55592955e0e505aa55739dc634402adf7ba75e67c477f3b16db79cc55356f6c5df915b9fdd6e7f12b33f3a3f1143394406cf5d2b5c8636bdb7abf37e3a6209f1c8c9e941af3e584d59641ea9b87d83c0cb0fd007eb5ef391a7e2643c1a46__init__.pycmore.pycrecipes.pyc__init__.pyctest_more.pyctest_recipes.pycrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootpython-more-itertools-4.2.0-lp152.3.3.1.src.rpmpython-more-itertoolspython2-more-itertools@    python(abi)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)2.73.0.4-14.6.0-14.0-15.2-14.14.1[Z@Z=Y[@Srtoddrme2178@gmail.commimi.vx@gmail.comarun@gmx.dealoisio@gmx.comtoddrme2178@gmail.com- Update to version 4.2.0 + New itertools: * map_reduce (thanks to pylang) * prepend (from the `Python 3.7 docs `_) + Improvements to existing itertools: * :func:`bucket` now complies with PEP 479 (thanks to irmen) + Other changes: * Python 3.7 is now supported (thanks to irmen) * Python 3.3 is no longer supported * The test suite no longer requires third-party modules to run * The API docs now include links to source code- spec-cleaned - use of %license macro - removed unneded dependency- specfile: * update copyright year - update to version 4.1.0: * New itertools: + split_at (thanks to michael-celani) + circular_shifts (thanks to hiqua) + make_decorator - see the blog post Yo, I heard you like decorators for a tour (thanks to pylang) + always_reversible (thanks to michael-celani) + nth_combination (from the Python 3.7 docs) * Improvements to existing itertools: + seekable now has an elements method to return cached items. + The performance tradeoffs between roundrobin and interleave_longest are now documented (thanks michael-celani, pylang, and MSeifert04) - changes from version 4.0.1: * No code changes - this release fixes how the docs display on PyPI. - changes from version 4.0.0: * New itertools: + consecutive_groups (Based on the example in the Python 2.4 docs) + seekable (If you’re looking for how to “reset” an iterator, you’re in luck!) + exactly_n (thanks to michael-celani) + run_length.encode and run_length.decode + difference * Improvements to existing itertools: + The number of items between filler elements in intersperse can now be specified (thanks to pylang) + distinct_permutations and peekable got some minor adjustments (thanks to MSeifert04) + always_iterable now returns an iterator object. It also now allows different types to be considered iterable (thanks to jaraco) + bucket can now limit the keys it stores in memory one now allows for custom exceptions (thanks to kalekundert) * Other changes: + A few typos were fixed (thanks to EdwardBetts) + All tests can now be run with python setup.py test- Update to version 3.2.0 * New itertools: + :func:`lstrip`, :func:`rstrip`, and :func:`strip` (thanks to MSeifert04 and pylang) + :func:`islice_extended` * Improvements to existing itertools: + Some bugs with slicing :func:`peekable`-wrapped iterables were fixed 3.1.0: * New itertools: + :func:`numeric_range` (Thanks to BebeSparkelSparkel and MSeifert04) + :func:`count_cycle` (Thanks to BebeSparkelSparkel) + :func:`locate` (Thanks to pylang and MSeifert04) * Improvements to existing itertools: + A few itertools are now slightly faster due to some function optimizations. (Thanks to MSeifert04) * The docs have been substantially revised with installation notes, categories for library functions, links, and more. (Thanks to pylang) 3.0.0: * Removed itertools: + ``context`` has been removed due to a design flaw - see below for replacement options. (thanks to NeilGirdhar) * Improvements to existing itertools: + ``side_effect`` now supports ``before`` and ``after`` keyword arguments. (Thanks to yardsale8) * PyPy and PyPy3 are now supported. The major version change is due to the removal of the ``context`` function. Replace it with standard ``with`` statement context management: .. code-block:: python [#] Don't use context() anymore file_obj = StringIO() consume(print(x, file=f) for f in context(file_obj) for x in u'123') [#] Use a with statement instead file_obj = StringIO() with file_obj as f: consume(print(x, file=f) for x in u'123') 2.6.0: * New itertools: + ``adjacent`` and ``groupby_transform`` (Thanks to diazona) + ``always_iterable`` (Thanks to jaraco) + (Removed in 3.0.0) ``context`` (Thanks to yardsale8) + ``divide`` (Thanks to mozbhearsum) * Improvements to existing itertools: + ``ilen`` is now slightly faster. (Thanks to wbolster) + ``peekable`` can now prepend items to an iterable. (Thanks to diazona) 2.5.0: * New itertools: + ``distribute`` (Thanks to mozbhearsum and coady) + ``sort_together`` (Thanks to clintval) + ``stagger`` and ``zip_offset`` (Thanks to joshbode) + ``padded`` * Improvements to existing itertools: + ``peekable`` now handles negative indexes and slices with negative components properly. + ``intersperse`` is now slightly faster. (Thanks to pylang) + ``windowed`` now accepts a ``step`` keyword argument. (Thanks to pylang) * Python 3.6 is now supported. 2.4.1: * Move docs 100% to readthedocs.io. 2.4: * New itertools: + ``accumulate``, ``all_equal``, ``first_true``, ``partition``, and ``tail`` from the itertools documentation. + ``bucket`` (Thanks to Rosuav and cvrebert) + ``collapse`` (Thanks to abarnet) + ``interleave`` and ``interleave_longest`` (Thanks to abarnet) + ``side_effect`` (Thanks to nvie) + ``sliced`` (Thanks to j4mie and coady) + ``split_before`` and ``split_after`` (Thanks to astronouth7303) + ``spy`` (Thanks to themiurgo and mathieulongtin) * Improvements to existing itertools: + ``chunked`` is now simpler and more friendly to garbage collection. (Contributed by coady, with thanks to piskvorky) + ``collate`` now delegates to ``heapq.merge`` when possible. (Thanks to kmike and julianpistorius) + ``peekable``-wrapped iterables are now indexable and sliceable. Iterating through ``peekable``-wrapped iterables is also faster. + ``one`` and ``unique_to_each`` have been simplified. (Thanks to coady) 2.3: * Added ``one`` from ``jaraco.util.itertools``. (Thanks, jaraco!) * Added ``distinct_permutations`` and ``unique_to_each``. (Contributed by bbayles) * Added ``windowed``. (Contributed by bbayles, with thanks to buchanae, jaraco, and abarnert) * Simplified the implementation of ``chunked``. (Thanks, nvie!) * Python 3.5 is now supported. Python 2.6 is no longer supported. * Python 3 is now supported directly; there is no 2to3 step. - Converted to single-spec- initial versionpython-more-itertoolsold-atreju3 1595436147 4.2.0-lp152.3.3.14.2.0-lp152.3.3.14.2.0-lp152.3.3.1more_itertoolsmore_itertools-4.2.0-py2.7.egg-infoPKG-INFOSOURCES.txtdependency_links.txtrequires.txttop_level.txt__init__.py__init__.pyc__init__.pyomore.pymore.pycmore.pyorecipes.pyrecipes.pycrecipes.pyotests__init__.py__init__.pyc__init__.pyotest_more.pytest_more.pyctest_more.pyotest_recipes.pytest_recipes.pyctest_recipes.pyopython2-more-itertoolsREADME.rstpython2-more-itertoolsLICENSE/usr/lib/python2.7/site-packages//usr/lib/python2.7/site-packages/more_itertools-4.2.0-py2.7.egg-info//usr/lib/python2.7/site-packages/more_itertools//usr/lib/python2.7/site-packages/more_itertools/tests//usr/share/doc/packages//usr/share/doc/packages/python2-more-itertools//usr/share/licenses//usr/share/licenses/python2-more-itertools/-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:Maintenance:13468/openSUSE_Leap_15.2_Update/86354374aabeddb3ae2af3f216669076-python-more-itertools.openSUSE_Leap_15.2_Updatedrpmxz5noarch-suse-linuxdirectoryASCII textPython script, ASCII text executablepython 2.7 byte-compiledempty RRRRRRRRRRRRRRRRRRq23V3LIyvwutf-8fd8ea03ca8ea08e2ee876d7a6d9a54154f423534c90cda8aec7568035bc42660?7zXZ !t/]"k%0a k 饇 !^Bש4MZl ,n>"ibHE#'fC,j%M9OӨJ`ԏ(@))鼽CD,Ǎ#'HN([$hQ8eOKN+ʌ;^qF_{ Vxg -%9;{-nz PǠqH$Q4U.J^ 7F`Θx`vhj"^[RIVmk2A%@ :*[#2.J&R4UB‡҈tG[)-z>iwn| 2tW;p:!9o0R̹Q[a^C/F 5hA4i,;fx"eλ 3| lqMԼL҂[АS$͹6 >4yrAUm"'ZKZ}Y{NJ17"} p'糪:-YM1Czidbw涨6GI0He'[fEvAeؙK ~k D[ǢGˆ"~xnbhZ6;4ԡ,a‰y0F<_!cbvZ该\ɘQCawOy.ⴠqhs2$9٧Idͮ[|xk>6:?N$błZ 3K6lʌ'ch#Ŝl\.r_W6&W{po꬛"YajQ>`.)8]uWwqP R!}:!N7A_WQڨJc·k/=o/ l-3:3A?;c^cIFUhm6il(Yvi! rMp;ؒCAUtTiΜ]:DH6#gʁ2uWIχ{_oөű9R l,JSFf&YK,Vi|aɁT9)cA 4qj]E֓r 5nmea>%t: V{FTT@vJ̻c5J}\[?gt8mP?+fX)|7`JvޒvP#d7}̤8bG /Iض YZ