summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-10-01 19:54:51 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2015-10-01 19:54:51 (GMT)
commit01ada3996bded57d1baf9c54b050fc55907d9b13 (patch)
tree5f795a91278beb5ae831a75eef3f4b20c5c3a6f8 /Misc/NEWS
parent29a1445136c7353543b516a085c38b8be9ce5109 (diff)
downloadcpython-01ada3996bded57d1baf9c54b050fc55907d9b13.zip
cpython-01ada3996bded57d1baf9c54b050fc55907d9b13.tar.gz
cpython-01ada3996bded57d1baf9c54b050fc55907d9b13.tar.bz2
Issue #25267: The UTF-8 encoder is now up to 75 times as fast for error
handlers: ``ignore``, ``replace``, ``surrogateescape``, ``surrogatepass``. Patch co-written with Serhiy Storchaka.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 68c0be1..1fae34a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,10 @@ Release date: XXXX-XX-XX
Core and Builtins
-----------------
+- Issue #25267: The UTF-8 encoder is now up to 75 times as fast for error
+ handlers: ``ignore``, ``replace``, ``surrogateescape``, ``surrogatepass``.
+ Patch co-written with Serhiy Storchaka.
+
- Issue #25280: Import trace messages emitted in verbose (-v) mode are no
longer formatted twice.