summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorEli Bendersky <eliben@gmail.com>2011-03-04 06:14:56 +0000
committerEli Bendersky <eliben@gmail.com>2011-03-04 06:14:56 +0000
commitfdae1fd5f76b1322754c0dfb07f7e2212ec74560 (patch)
treec3230454ba8189bdca3ceceb9c543b96de0fae75 /Misc
parent21576364cdbc63a38eaa5a8e8701f3c367cac422 (diff)
downloadcpython-fdae1fd5f76b1322754c0dfb07f7e2212ec74560.tar.gz
Merged revisions 88735 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r88735 | eli.bendersky | 2011-03-04 06:55:25 +0200 (Fri, 04 Mar 2011) | 2 lines Issue #11386: Fixed the exception thrown by bytearray.pop() for empty bytearrays ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index bed3edcfa2..f1da92c103 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -34,6 +34,9 @@ Core and Builtins
float.__divmod__ with respect to signed zeros. -4.0 % 4.0 should be
0.0, not -0.0.
+- Issue #11386: bytearray.pop() now throws IndexError when the bytearray is
+ empty, instead of OverflowError.
+
Library
-------