diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-11-17 22:28:17 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-11-17 22:28:17 (GMT) |
commit | 6d5ad227a50c6c5a78e48a98095788953ab49512 (patch) | |
tree | 9890bd98fc7c2069fcea429811e4c42f6590508a /Misc | |
parent | fa7aeecbca8265b81749c0c7c85704070c8eeefe (diff) | |
download | cpython-6d5ad227a50c6c5a78e48a98095788953ab49512.zip cpython-6d5ad227a50c6c5a78e48a98095788953ab49512.tar.gz cpython-6d5ad227a50c6c5a78e48a98095788953ab49512.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
@@ -12,6 +12,9 @@ What's New in Python 3.3.1? Core and Builtins ----------------- +- Issue #16215: Fix potential double memory free in str.replace(). Patch + by Serhiy Storchaka. + - Issue #16453: Fix equality testing of dead weakref objects. - Issue #9535: Fix pending signals that have been received but not yet |