diff options
author | Raymond Hettinger <python@rcn.com> | 2007-10-04 00:20:27 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2007-10-04 00:20:27 (GMT) |
commit | 50e90e265fc3205fc6cc0193d3cebe08e9859b0a (patch) | |
tree | e32432fef1d15a607dfff20638fe36c0db463e6c /Misc | |
parent | 8f6693701c1899168f5bca96549ae2f2f590624e (diff) | |
download | cpython-50e90e265fc3205fc6cc0193d3cebe08e9859b0a.zip cpython-50e90e265fc3205fc6cc0193d3cebe08e9859b0a.tar.gz cpython-50e90e265fc3205fc6cc0193d3cebe08e9859b0a.tar.bz2 |
itertools.count() no longer limited to sys.maxint.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -270,6 +270,9 @@ Core and builtins 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). |