diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-09-06 10:03:31 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-09-06 10:03:31 (GMT) |
commit | c8a7c7c3b9c28dd2c0f9b81d807f8c7f60cb0924 (patch) | |
tree | 151b9d039dc09c20d9b2b36b77d515c8a4970553 /Misc | |
parent | 2596758cb42cb592f2e3c33ef77bc9b02c995510 (diff) | |
download | cpython-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/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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 |