From: Serhiy Storchaka Date: Sat, 16 Mar 2013 20:55:04 +0000 (+0200) Subject: Issue #16564: Fixed a performance regression relative to Python 3.1 in the X-Git-Tag: v3.4.0a1~1188^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f5efe3b7960fddb5574df976d6fccbdbc11cbb09;p=python Issue #16564: Fixed a performance regression relative to Python 3.1 in the caching of compiled regular expressions. --- f5efe3b7960fddb5574df976d6fccbdbc11cbb09 diff --cc Misc/NEWS index 893c592e3d,fa689eae0a..e69e03c9b7 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -283,15 -193,11 +283,18 @@@ Core and Builtin Library ------- + - Issue #16564: Fixed a performance regression relative to Python 3.1 in the + caching of compiled regular expressions. + +- Added missing FeedParser and BytesFeedParser to email.parser.__all__. + - Issue #17431: Fix missing import of BytesFeedParser in email.parser. +- Issue #12921: http.server's send_error takes an explain argument to send more + information in response. Patch contributed by Karl. + +- Issue #17414: Add timeit, repeat, and default_timer to timeit.__all__. + - Issue #1285086: Get rid of the refcounting hack and speed up urllib.parse.unquote() and urllib.parse.unquote_to_bytes().