python3-more-itertools-4.2.0-lp151.2.3.1<>,:^N/=„YFViiyXA!%UIHAQ3If}`$N$5yT}'O<@?.uY@b(=ZDTR; PMZ|MkDٱ4r&O% am,_f< e>^d9|E46Br\@11Ɗ=@#@M< lv&s¡,   G2ZMjp cF3>>1?1d + f 9?H     H          $    t  (/889L:F'G' H($ I( X(Y(\( ])\ ^+ b-c.Bd.e.f.l.u/ v/w/ x0\ y0z1$14181>1Cpython3-more-itertools4.2.0lp151.2.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.^Nlamb22eopenSUSE Leap 15.1openSUSEMIThttp://bugs.opensuse.orgDevelopment/Languages/Pythonhttps://github.com/erikrose/more-itertoolslinuxnoarch2#WHH>>:pJJ||LfQAA큤A큤A큤A큤A큤A큤^J^J^J^J^J^J^JZ$^J^J^J^J^J^J^JZA[^JY.^J^J^J^J^J^J^JZ[^MY^MX df0977be00e619b29b5d7625678449733ec5802c5f59bf83e0fe52dc051ca387c1354244a4085855e4065edc5e36b1fda242da9b02a187766ca1b22bcd411caf01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b8197ae98842b5b54244e3a9fada667dd9a535f0ee16370797a24d4ccf07660847c0baa457bbd2cf871741f6e8c9a307053aed6b67cc334a9396f7f8e52a2b3a34be9fa4bd37752996a537a7eec057ed599e5eb2270b97b09b6aae512af6d394ca6fed880eff80c9ae2fc5d50a4b5c945fedfd293a8eb57ef695fb090343cc7395163ab8330bb49cfaecead235a89bff0c73a1df28d049191f5f425843e7848b3f08d02fb721fb74c8fc491192c07e48e22c60b26a2e9ca9e965ac17a01280cc5cd15dd2f09fb09d696896ec2e2038389f73f380c2de51d1fad962804240a932888beb654b607f2bea9ae9312434ed387285a70a80e6ca0056383addb2696add1d702507d6cf42062a399ada6cef40d43a168eec24d38299dbad41098155f3de76312cd44701b32eff4c2847976d2600ad2a3a86c301c7f343f9eac6b41a37a25e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855b0c949fedf30cd3305a8ae934861341fe5e5b75a1af42b4ca49e0234799c095071f9513a90cd43e801e2ea9f055f850901ada70809ce74a33a7fc464d02a98f598e3a83970bc743d2bef9e029d8de229b958614384fea723a9346e9c842173d3264617831aa47a4d38662bd5e265e4d3887239e4fa04933e729b9c3b4108eba66734d540a00b888ee8168925946a89367ff5dffaeb81ce9537cc4a022fc8847f6a176f90d9b0d2b033686084d87bda9846548bfc53bf97987d80bcf6015e080c7ad6bef32bf9141ceff355de236a471a31d7167be5a8a440d23fe73770f2bd2bf6c5df915b9fdd6e7f12b33f3a3f1143394406cf5d2b5c8636bdb7abf37e3a6209f1c8c9e941af3e584d59641ea9b87d83c0cb0fd007eb5ef391a7e2643c1a46__init__.cpython-36.opt-1.pyc__init__.cpython-36.opt-1.pycrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootpython-more-itertools-4.2.0-lp151.2.3.1.src.rpmpython3-more-itertools@    python(abi)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.63.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 versionlamb22 1587917646  4.2.0-lp151.2.3.1 more_itertoolsmore_itertools-4.2.0-py3.6.egg-infoPKG-INFOSOURCES.txtdependency_links.txtrequires.txttop_level.txt__init__.py__pycache____init__.cpython-36.opt-1.pyc__init__.cpython-36.pycmore.cpython-36.opt-1.pycmore.cpython-36.pycrecipes.cpython-36.opt-1.pycrecipes.cpython-36.pycmore.pyrecipes.pytests__init__.py__pycache____init__.cpython-36.opt-1.pyc__init__.cpython-36.pyctest_more.cpython-36.opt-1.pyctest_more.cpython-36.pyctest_recipes.cpython-36.opt-1.pyctest_recipes.cpython-36.pyctest_more.pytest_recipes.pypython3-more-itertoolsREADME.rstpython3-more-itertoolsLICENSE/usr/lib/python3.6/site-packages//usr/lib/python3.6/site-packages/more_itertools-4.2.0-py3.6.egg-info//usr/lib/python3.6/site-packages/more_itertools//usr/lib/python3.6/site-packages/more_itertools/__pycache__//usr/lib/python3.6/site-packages/more_itertools/tests//usr/lib/python3.6/site-packages/more_itertools/tests/__pycache__//usr/share/doc/packages//usr/share/doc/packages/python3-more-itertools//usr/share/licenses//usr/share/licenses/python3-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:12459/openSUSE_Leap_15.1_Update/7dc14fee214a22768b71939c504db3cc-python-more-itertools.openSUSE_Leap_15.1_Updatedrpmxz5noarch-suse-linuxdirectoryASCII textPython script, ASCII text executablepython 3.6 byte-compiledempty RRRRRRRRRRRRRRRRRRGr"OU#w(V!WoqmB\4](KXDu6Ve{v&qd2 ųZ*SJ,_RsD_cTt)1. Й צfGP;c-Z]Y5`q cdH]g&bh󄧯bۋBZëfL&Nt蝊 l6ڋ#C*hᝣg4!*H1֨a]OT\B8Ŵ+֎ᅜ|Kq^89Oy::A=@iu(DRʢ?v ~$!JDZh%Hw<'f9X}q'Vz 1vA~@A|+qmk['!cOm`)5R>=wjJzu[[^̱>g"@&]:lLY̚ vLܴ)]0@v)'Ku+!jDhE35&ޘc+M mebͶ?9/dNK#.=G[Ln:v H8WC ;dte]3 hilB?׍8GWڳ\qF LZNj9,*g ={cd0piYIcےF}Br)2+El( pgS}A@ Bq֢lf7l  1:F9SL(ڐs-rw|p!jJ$mr`(UR71J礹CՊ/ D\joVk$