summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2015-08-16 21:49:24 (GMT)
committerRaymond Hettinger <python@rcn.com>2015-08-16 21:49:24 (GMT)
commitca3788c2e8de9c60252d7a8c5fcf0e0bfa25333d (patch)
treee233bfc535988a66e666f5452f0537a998de55e5 /Misc
parenta6a2d44dc7f50a75c3df742d9fc2c30217436c40 (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index a8b93e6..a3a749d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.