diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-10-01 19:54:51 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-10-01 19:54:51 (GMT) |
commit | 01ada3996bded57d1baf9c54b050fc55907d9b13 (patch) | |
tree | 5f795a91278beb5ae831a75eef3f4b20c5c3a6f8 /Misc/NEWS | |
parent | 29a1445136c7353543b516a085c38b8be9ce5109 (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |