summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-11-17 22:29:28 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-11-17 22:29:28 (GMT)
commit5439458a2a5f4da38eeef2007f400152148fe04f (patch)
treeae4fac480be7eebcf123d1c9da331489c212e199 /Misc
parentffdb2c21b34253077001a0181c2fe1f4e4b2be15 (diff)
parent6d5ad227a50c6c5a78e48a98095788953ab49512 (diff)
downloadcpython-5439458a2a5f4da38eeef2007f400152148fe04f.zip
cpython-5439458a2a5f4da38eeef2007f400152148fe04f.tar.gz
cpython-5439458a2a5f4da38eeef2007f400152148fe04f.tar.bz2
Issue #16215: Fix potential double memory free in str.replace().
Patch by Serhiy Storchaka.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index aa9f6c7..df8f014 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.4.0 Alpha 1?
Core and Builtins
-----------------
+- Issue #16215: Fix potential double memory free in str.replace(). Patch
+ by Serhiy Storchaka.
+
- Issue #16290: A float return value from the __complex__ special method is no
longer accepted in the complex() constructor.