summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2015-05-19 18:55:42 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2015-05-19 18:55:42 (GMT)
commitef64847f7172d74f793cff179c50435e846690a6 (patch)
treebb73980a0924883ebd84e2bd6f8715c3a937ae93 /Misc/NEWS
parent94e44ed517cfce20f75cd1c142768267eb22f10d (diff)
parent2545411e2848c50bd4f7345fc76e9d24cd063d32 (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 3d8e316..63e4329 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.