summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-04-13 19:45:04 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-04-13 19:45:04 (GMT)
commite2cef885a25967605007248cb158671b765df002 (patch)
treed8e0596e3acc23cdf93c56fc419c846dd585779d /Misc
parenta707f299cb325a8de7bb7cae746b264573bc1cfc (diff)
downloadcpython-e2cef885a25967605007248cb158671b765df002.zip
cpython-e2cef885a25967605007248cb158671b765df002.tar.gz
cpython-e2cef885a25967605007248cb158671b765df002.tar.bz2
Issue #16061: Speed up str.replace() for replacing 1-character strings.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c6188de..1889ac2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,8 @@ What's New in Python 3.4.0 Alpha 1?
Core and Builtins
-----------------
+- Issue #16061: Speed up str.replace() for replacing 1-character strings.
+
- Issue #17715: Fix segmentation fault from raising an exception in a __trunc__
method.