summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-03-24 19:55:47 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-03-24 19:55:47 (GMT)
commitd9d769fcdd573ab12b628798288c02dceba53505 (patch)
treeb61e4767ddb9a89e4402a041f381584662363584 /Misc
parentf7ef47583e743ebecaae8c93dcb92e7a5792884f (diff)
downloadcpython-d9d769fcdd573ab12b628798288c02dceba53505.zip
cpython-d9d769fcdd573ab12b628798288c02dceba53505.tar.gz
cpython-d9d769fcdd573ab12b628798288c02dceba53505.tar.bz2
Issue #23573: Increased performance of string search operations (str.find,
str.index, str.count, the in operator, str.split, str.partition) with arguments of different kinds (UCS1, UCS2, UCS4).
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 6a40fba..946335d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,10 @@ Release date: 2015-03-28
Core and Builtins
-----------------
+- Issue #23573: Increased performance of string search operations (str.find,
+ str.index, str.count, the in operator, str.split, str.partition) with
+ arguments of different kinds (UCS1, UCS2, UCS4).
+
- Issue #23753: Python doesn't support anymore platforms without stat() or
fstat(), these functions are always required.