summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2009-02-12 05:39:46 (GMT)
committerRaymond Hettinger <python@rcn.com>2009-02-12 05:39:46 (GMT)
commit31c769ca89ee5f4fdd7ed7e462fa143ed979edee (patch)
tree562dcde280acb5c59d94371981ca514888ea79c1 /Misc
parent4bb96feb60b80b580706e3a2c67db856382a530f (diff)
downloadcpython-31c769ca89ee5f4fdd7ed7e462fa143ed979edee.zip
cpython-31c769ca89ee5f4fdd7ed7e462fa143ed979edee.tar.gz
cpython-31c769ca89ee5f4fdd7ed7e462fa143ed979edee.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 530a55d..520edda 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -227,6 +227,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.