commit | 50e90e265fc3205fc6cc0193d3cebe08e9859b0a | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Thu Oct 04 00:20:27 2007 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Thu Oct 04 00:20:27 2007 +0000 |
tree | e32432fef1d15a607dfff20638fe36c0db463e6c | |
parent | 8f6693701c1899168f5bca96549ae2f2f590624e [diff] [blame] |
itertools.count() no longer limited to sys.maxint.
diff --git a/Misc/NEWS b/Misc/NEWS index 01f860b..bd31af4 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -270,6 +270,9 @@ Library ------- +- itertools.count() is no longer bounded to LONG_MAX. Formerly, it raised + an OverflowError. Now, automatically shifts from ints to longs. + - Patch #1541463: optimize performance of cgi.FieldStorage operations. - Decimal is fully updated to the latest Decimal Specification (v1.66).