summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-10-05 11:43:50 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2015-10-05 11:43:50 (GMT)
commit1d65d9192dac57776693c55a9ccefbde2ca74c23 (patch)
tree260cc1acc8425fe62664da26bfdf30c4fa39b508 /Doc
parent7dbe6dd96393d713e405f80fa0eb8f9471c8276a (diff)
downloadcpython-1d65d9192dac57776693c55a9ccefbde2ca74c23.zip
cpython-1d65d9192dac57776693c55a9ccefbde2ca74c23.tar.gz
cpython-1d65d9192dac57776693c55a9ccefbde2ca74c23.tar.bz2
Issue #25301: The UTF-8 decoder is now up to 15 times as fast for error
handlers: ``ignore``, ``replace`` and ``surrogateescape``.
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 ca83ef9..24fd822 100644
--- a/Doc/whatsnew/3.6.rst
+++ b/Doc/whatsnew/3.6.rst
@@ -123,6 +123,9 @@ Optimizations
* The UTF-8 encoder is now up to 75 times as fast for error handlers:
``ignore``, ``replace``, ``surrogateescape``, ``surrogatepass``.
+* The UTF-8 decoder is now up to 15 times as fast for error handlers:
+ ``ignore``, ``replace`` and ``surrogateescape``.
+
Build and C API Changes
=======================