diff options
author | Raymond Hettinger <python@rcn.com> | 2015-08-16 21:49:24 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2015-08-16 21:49:24 (GMT) |
commit | ca3788c2e8de9c60252d7a8c5fcf0e0bfa25333d (patch) | |
tree | e233bfc535988a66e666f5452f0537a998de55e5 /Misc | |
parent | a6a2d44dc7f50a75c3df742d9fc2c30217436c40 (diff) | |
download | cpython-ca3788c2e8de9c60252d7a8c5fcf0e0bfa25333d.zip cpython-ca3788c2e8de9c60252d7a8c5fcf0e0bfa25333d.tar.gz cpython-ca3788c2e8de9c60252d7a8c5fcf0e0bfa25333d.tar.bz2 |
Issue #24874: Speed-up itertools and make it pickles more compact.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -25,6 +25,9 @@ Library - Issue #21159: Improve message in configparser.InterpolationMissingOptionError. Patch from Ćukasz Langa. +- Issue #24874: Improve speed of itertools.cycle() and make its + pickle more compact. + - Fix crash in itertools.cycle.__setstate__() when the first argument wasn't a list. |