summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-06-15 20:22:18 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-06-15 20:22:18 (GMT)
commitc90929624b53561a37c730a7801bd14b1d2873ca (patch)
tree42d5972605eaa0d89357102c7da8e0f8aea824fb
parent27f6a3b0bff9f100331707a4a461446ffc18baae (diff)
downloadcpython-c90929624b53561a37c730a7801bd14b1d2873ca.zip
cpython-c90929624b53561a37c730a7801bd14b1d2873ca.tar.gz
cpython-c90929624b53561a37c730a7801bd14b1d2873ca.tar.bz2
Mention the UTF-16 encoding speedup in the whatsnew (issue #15026).
-rw-r--r--Doc/whatsnew/3.3.rst6
1 files changed, 4 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst
index f52d5ae..974cc71 100644
--- a/Doc/whatsnew/3.3.rst
+++ b/Doc/whatsnew/3.3.rst
@@ -1484,9 +1484,11 @@ Major performance enhancements have been added:
* 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.
+* UTF-8 and UTF-16 decoding is now 2x to 4x faster. UTF-16 encoding is now
+ up to 10x faster.
- (contributed by Serhiy Storchaka, :issue:`14624` and :issue:`14738`.)
+ (contributed by Serhiy Storchaka, :issue:`14624`, :issue:`14738` and
+ :issue:`15026`.)
Build and C API Changes