diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-04-16 22:43:53 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-04-16 22:43:53 (GMT) |
commit | c218ce86c4aec619b532076e6c496bd3febd088c (patch) | |
tree | 825ef380ae7425d4f279439792470ddc75a037f7 /Misc | |
parent | 58a7f75d054fe5e2306a704fc8257b4cf6f99faf (diff) | |
download | cpython-c218ce86c4aec619b532076e6c496bd3febd088c.zip cpython-c218ce86c4aec619b532076e6c496bd3febd088c.tar.gz cpython-c218ce86c4aec619b532076e6c496bd3febd088c.tar.bz2 |
Merged revisions 80123-80124,80126 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r80123 | benjamin.peterson | 2010-04-16 17:24:16 -0500 (Fri, 16 Apr 2010) | 1 line
bytearray -> type2test
........
r80124 | benjamin.peterson | 2010-04-16 17:25:57 -0500 (Fri, 16 Apr 2010) | 1 line
fix typo
........
r80126 | benjamin.peterson | 2010-04-16 17:35:38 -0500 (Fri, 16 Apr 2010) | 1 line
have a clear error when passing something > sys.maxsize to bytearray
........
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -12,6 +12,9 @@ What's New in Python 2.6.6 alpha 1? Core and Builtins ----------------- +- Issue #8417: Raise an OverflowError when an integer larger than sys.maxsize is + passed to bytearray. + - Issue #8329: Don't return the same lists from select.select when no fds are changed. |