diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2015-05-19 18:52:27 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2015-05-19 18:52:27 (GMT) |
commit | 2545411e2848c50bd4f7345fc76e9d24cd063d32 (patch) | |
tree | 5d3ee88c71a59a1848382b99cf112e3194a2635b /Misc/NEWS | |
parent | 637144603621d1aa1a702d925de29c480b9f82e9 (diff) | |
download | cpython-2545411e2848c50bd4f7345fc76e9d24cd063d32.zip cpython-2545411e2848c50bd4f7345fc76e9d24cd063d32.tar.gz cpython-2545411e2848c50bd4f7345fc76e9d24cd063d32.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: tba 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 #20274: Remove ignored and erroneous "kwargs" parameters from three |