diff options
author | Raymond Hettinger <python@rcn.com> | 2009-02-12 05:39:46 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2009-02-12 05:39:46 (GMT) |
commit | 31c769ca89ee5f4fdd7ed7e462fa143ed979edee (patch) | |
tree | 562dcde280acb5c59d94371981ca514888ea79c1 /Misc | |
parent | 4bb96feb60b80b580706e3a2c67db856382a530f (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |