diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-06-08 14:57:22 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-06-08 14:57:22 (GMT) |
commit | 9530452e7db3edf9240d4548d414382df026f2b5 (patch) | |
tree | 1bdf0912ecca36d7e4a855475ebb519cb32c5775 /Misc | |
parent | a59bfb3c7d382f4fb6c2a7afea76182d4c587b26 (diff) | |
download | cpython-9530452e7db3edf9240d4548d414382df026f2b5.zip cpython-9530452e7db3edf9240d4548d414382df026f2b5.tar.gz cpython-9530452e7db3edf9240d4548d414382df026f2b5.tar.bz2 |
Merged revisions 81834 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r81834 | benjamin.peterson | 2010-06-08 09:53:29 -0500 (Tue, 08 Jun 2010) | 1 line
kill extra word
........
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -15,8 +15,8 @@ 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. +- In the str.format(), raise a ValueError when indexes to arguments are too + large. - Issue #2844: Make int('42', n) consistently raise ValueError for invalid integers n (including n = -909). |