diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-06-07 22:31:26 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-06-07 22:31:26 (GMT) |
commit | 59a1b2f732e9c672ec03deb965bd682706d1ef24 (patch) | |
tree | 9cbe639f518af04965db43b22dabf8d18c88883f /Misc | |
parent | 5b92772e242f3302f11b1d6e3d451370b98e01d5 (diff) | |
download | cpython-59a1b2f732e9c672ec03deb965bd682706d1ef24.zip cpython-59a1b2f732e9c672ec03deb965bd682706d1ef24.tar.gz cpython-59a1b2f732e9c672ec03deb965bd682706d1ef24.tar.bz2 |
Merged revisions 81820 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r81820 | benjamin.peterson | 2010-06-07 17:23:23 -0500 (Mon, 07 Jun 2010) | 1 line
correctly overflow when indexes are too large
........
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -15,6 +15,9 @@ Core and Builtins - Issue #8837: Remove "O?" format of PyArg_Parse*() functions. The format is no used anymore and it was never documented. +- In the str.format(), raise a ValueError when either indexes to arguments are + too large. + - Issue #2844: Make int('42', n) consistently raise ValueError for invalid integers n (including n = -909). |