summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-09-06 10:19:23 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-09-06 10:19:23 (GMT)
commit54a3db9f41269dd00ec26b345b8518afcd5858ff (patch)
treed7a06a92ed6be635194911c55c7ef50f76ddaf95 /Misc/NEWS
parent9c1133678652e7c43f10f29cb3fa204665316860 (diff)
downloadcpython-54a3db9f41269dd00ec26b345b8518afcd5858ff.zip
cpython-54a3db9f41269dd00ec26b345b8518afcd5858ff.tar.gz
cpython-54a3db9f41269dd00ec26b345b8518afcd5858ff.tar.bz2
Merged revisions 74673 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r74673 | mark.dickinson | 2009-09-06 11:03:31 +0100 (Sun, 06 Sep 2009) | 3 lines 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/NEWS')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 6e6aa54..7243eb9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,8 @@ What's New in Python 3.2 Alpha 1?
Core and Builtins
-----------------
+- Issue #6846: Fix bug where bytearray.pop() returns negative integers.
+
- Issue #6750: A text file opened with io.open() could duplicate its output
when writing from multiple threads at the same time.