diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-11-17 22:29:28 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-11-17 22:29:28 (GMT) |
commit | 5439458a2a5f4da38eeef2007f400152148fe04f (patch) | |
tree | ae4fac480be7eebcf123d1c9da331489c212e199 /Misc | |
parent | ffdb2c21b34253077001a0181c2fe1f4e4b2be15 (diff) | |
parent | 6d5ad227a50c6c5a78e48a98095788953ab49512 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |