diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-03-24 19:55:47 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-03-24 19:55:47 (GMT) |
commit | d9d769fcdd573ab12b628798288c02dceba53505 (patch) | |
tree | b61e4767ddb9a89e4402a041f381584662363584 /Misc | |
parent | f7ef47583e743ebecaae8c93dcb92e7a5792884f (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |