
python-checkins at python
May 17, 2012, 8:39 AM
Views: 35
Permalink
|
|
cpython: Add mention of decoding optimizations in the what's new document.
|
|
http://hg.python.org/cpython/rev/3430d7329a3b changeset: 77012:3430d7329a3b parent: 77010:b5e95bb79ba3 user: Antoine Pitrou <solipsis [at] pitrou> date: Thu May 17 17:37:02 2012 +0200 summary: Add mention of decoding optimizations in the what's new document. files: Doc/whatsnew/3.3.rst | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -1260,6 +1260,10 @@ * repeating a single ASCII letter and getting a substring of a ASCII strings is 4 times faster +* UTF-8 and UTF-16 decoding is now 2x to 4x faster. + + (contributed by Serhiy Storchaka, :issue:`14624` and :issue:`14738`.) + Build and C API Changes ======================= -- Repository URL: http://hg.python.org/cpython
|