summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-09-29 10:32:13 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2015-09-29 10:32:13 (GMT)
commitc3713e9706e51bbd30958c27d35e7fda764b0c4a (patch)
tree43a7def678412164cfe0fdcbc0ac1250d7d3ab10 /Doc
parent5fbeabcbb6ea1d4af91fea0bc96c3d01f47b728f (diff)
downloadcpython-c3713e9706e51bbd30958c27d35e7fda764b0c4a.zip
cpython-c3713e9706e51bbd30958c27d35e7fda764b0c4a.tar.gz
cpython-c3713e9706e51bbd30958c27d35e7fda764b0c4a.tar.bz2
Optimize ascii/latin1+surrogateescape encoders
Issue #25227: Optimize ASCII and latin1 encoders with the ``surrogateescape`` error handler: the encoders are now up to 3 times as fast. Initial patch written by Serhiy Storchaka.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/whatsnew/3.6.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst
index 0ea3f3b..16cdca0 100644
--- a/Doc/whatsnew/3.6.rst
+++ b/Doc/whatsnew/3.6.rst
@@ -117,6 +117,9 @@ Optimizations
* The ASCII decoder is now up to 60 times as fast for error handlers:
``surrogateescape``, ``ignore`` and ``replace``.
+* The ASCII and the Latin1 encoders are now up to 3 times as fast for the error
+ error ``surrogateescape``.
+
Build and C API Changes
=======================