14
0

Accepting request 590857 from home:apersaud:branches:devel:languages:python

update to latest version

OBS-URL: https://build.opensuse.org/request/show/590857
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-more-itertools?expand=0&rev=4
This commit is contained in:
Tomáš Chvátal
2018-03-25 08:11:57 +00:00
committed by Git OBS Bridge
parent cc108bda85
commit 6f806f2363
4 changed files with 50 additions and 5 deletions

View File

@@ -1,3 +1,48 @@
-------------------------------------------------------------------
Sat Mar 24 19:55:52 UTC 2018 - arun@gmx.de
- 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 youre looking for how to “reset” an iterator,
youre 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
-------------------------------------------------------------------
Tue Jul 4 17:15:27 UTC 2017 - aloisio@gmx.com