commit | c8a7c7c3b9c28dd2c0f9b81d807f8c7f60cb0924 | [log] [tgz] |
---|---|---|
author | Mark Dickinson <dickinsm@gmail.com> | Sun Sep 06 10:03:31 2009 +0000 |
committer | Mark Dickinson <dickinsm@gmail.com> | Sun Sep 06 10:03:31 2009 +0000 |
tree | 151b9d039dc09c20d9b2b36b77d515c8a4970553 | |
parent | 2596758cb42cb592f2e3c33ef77bc9b02c995510 [diff] [blame] |
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.
diff --git a/Misc/NEWS b/Misc/NEWS index 07f90f1..739726c 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -12,6 +12,8 @@ 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