summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2009-02-12 06:28:27 (GMT)
committerRaymond Hettinger <python@rcn.com>2009-02-12 06:28:27 (GMT)
commit3072921d0e668e890da1312e0f47f3e7e4854329 (patch)
treeb38f60c70b230878f3e993e9949f4b360313d4b2 /Misc
parenta9cab519656deda9fc3f500489bea1177d155858 (diff)
downloadcpython-3072921d0e668e890da1312e0f47f3e7e4854329.zip
cpython-3072921d0e668e890da1312e0f47f3e7e4854329.tar.gz
cpython-3072921d0e668e890da1312e0f47f3e7e4854329.tar.bz2
Issue 5032: added a step argument to itertools.count() and allowed non-integer arguments.
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 1be4001..7f99d45 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -241,6 +241,9 @@ Library
- Added a new itertools functions: combinations_with_replacement()
and compress().
+- Issue 5032: added a step argument to itertools.count() and
+ allowed non-integer arguments.
+
- Fix and properly document the multiprocessing module's logging
support, expose the internal levels and provide proper usage
examples.