summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-05-10 14:36:02 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-05-10 14:36:02 (GMT)
commitca5f91b888bc0056fc08d062f65cc783bbba8532 (patch)
tree6f40cd659395052192a79984ab96d6c4709eb491 /Misc
parentfda08b0860e4f5d61c54021efc56fd7893b4b391 (diff)
downloadcpython-ca5f91b888bc0056fc08d062f65cc783bbba8532.zip
cpython-ca5f91b888bc0056fc08d062f65cc783bbba8532.tar.gz
cpython-ca5f91b888bc0056fc08d062f65cc783bbba8532.tar.bz2
Issue #14738: Speed-up UTF-8 decoding on non-ASCII data. Patch by Serhiy Storchaka.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 9109bf4..f383e91 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.3.0 Alpha 4?
Core and Builtins
-----------------
+- Issue #14738: Speed-up UTF-8 decoding on non-ASCII data. Patch by Serhiy
+ Storchaka.
+
- Issue #14700: Fix two broken and undefined-behaviour-inducing overflow checks
in old-style string formatting.