summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-09-06 10:03:31 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-09-06 10:03:31 (GMT)
commitc8a7c7c3b9c28dd2c0f9b81d807f8c7f60cb0924 (patch)
tree151b9d039dc09c20d9b2b36b77d515c8a4970553 /Misc
parent2596758cb42cb592f2e3c33ef77bc9b02c995510 (diff)
downloadcpython-c8a7c7c3b9c28dd2c0f9b81d807f8c7f60cb0924.zip
cpython-c8a7c7c3b9c28dd2c0f9b81d807f8c7f60cb0924.tar.gz
cpython-c8a7c7c3b9c28dd2c0f9b81d807f8c7f60cb0924.tar.bz2
Issue #6846: bytearray.pop was returning ints in the range [-128, 128)
instead of [0, 256). Thanks Hagen Fürstenau for the report and fix.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 07f90f1..739726c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,8 @@ What's New in Python 2.7 alpha 1
Core and Builtins
-----------------
+- Issue #6846: Fix bug where bytearray.pop() returns negative integers.
+
- classmethod no longer checks if its argument is callable.
- Issue #6750: A text file opened with io.open() could duplicate its output