diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-05-16 19:15:38 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-05-16 19:15:38 (GMT) |
commit | 7bf36dace8c3d3714dfe5175891612450cb82ce5 (patch) | |
tree | 849617685ed31b4e51b7d7aff8a63759868cd28c /Misc | |
parent | dc953a507827fb43433e79dad391071a8b48a02f (diff) | |
download | cpython-7bf36dace8c3d3714dfe5175891612450cb82ce5.zip cpython-7bf36dace8c3d3714dfe5175891612450cb82ce5.tar.gz cpython-7bf36dace8c3d3714dfe5175891612450cb82ce5.tar.bz2 |
Issue #27039: Fixed bytearray.remove() for values greater than 127.
Patch by Joe Jevnik.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -10,6 +10,9 @@ Release date: tba Core and Builtins ----------------- +- Issue #27039: Fixed bytearray.remove() for values greater than 127. Patch by + Joe Jevnik. + - Issue #23640: int.from_bytes() no longer bypasses constructors for subclasses. - Issue #26811: gc.get_objects() no longer contains a broken tuple with NULL |