diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2015-05-19 18:55:42 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2015-05-19 18:55:42 (GMT) |
commit | ef64847f7172d74f793cff179c50435e846690a6 (patch) | |
tree | bb73980a0924883ebd84e2bd6f8715c3a937ae93 /Misc/NEWS | |
parent | 94e44ed517cfce20f75cd1c142768267eb22f10d (diff) | |
parent | 2545411e2848c50bd4f7345fc76e9d24cd063d32 (diff) | |
download | cpython-ef64847f7172d74f793cff179c50435e846690a6.zip cpython-ef64847f7172d74f793cff179c50435e846690a6.tar.gz cpython-ef64847f7172d74f793cff179c50435e846690a6.tar.bz2 |
Issue #23985: Fix a possible buffer overrun when deleting a slice from the front of a bytearray and then appending some other bytes data.
Patch by Martin Panter.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -10,6 +10,9 @@ Release date: 2015-05-24 Core and Builtins ----------------- +- Issue #23985: Fix a possible buffer overrun when deleting a slice from + the front of a bytearray and then appending some other bytes data. + - Issue #24102: Fixed exception type checking in standard error handlers. - Issue #15027: The UTF-32 encoder is now 3x to 7x faster. |