diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2007-10-05 05:29:17 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2007-10-05 05:29:17 (GMT) |
commit | 44f326ef2ae0abdbac7ebeddf4b14664ed4a1367 (patch) | |
tree | 44075d5d4222c3cd8fa85d65c01216f3148adb09 | |
parent | 5a29dd30e0117a59714fa083a946997f2355eede (diff) | |
download | cpython-44f326ef2ae0abdbac7ebeddf4b14664ed4a1367.zip cpython-44f326ef2ae0abdbac7ebeddf4b14664ed4a1367.tar.gz cpython-44f326ef2ae0abdbac7ebeddf4b14664ed4a1367.tar.bz2 |
Add a note about fixing some more warnings found by Coverity.
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -12,6 +12,8 @@ What's New in Python 2.6 alpha 1? Core and builtins ----------------- +- Fix warnings found by the new version of the Coverity checker. + - The enumerate() builtin function is no longer bounded to sequences smaller than LONG_MAX. Formerly, it raised an OverflowError. Now, automatically shifts from ints to longs. |