From: Serhiy Storchaka Date: Thu, 14 Mar 2013 19:34:55 +0000 (+0200) Subject: Issue #1285086: Get rid of the refcounting hack and speed up X-Git-Tag: v3.4.0a1~1200^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c12956ddf23d87d8b1e86dceff4e803285f40141;p=python Issue #1285086: Get rid of the refcounting hack and speed up urllib.parse.unquote() and urllib.parse.unquote_to_bytes(). --- c12956ddf23d87d8b1e86dceff4e803285f40141 diff --cc Misc/NEWS index c5a58775e2,8bcf4976b1..a6d05fe814 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -280,11 -193,9 +280,14 @@@ Core and Builtin Library ------- + - Issue #1285086: Get rid of the refcounting hack and speed up + urllib.parse.unquote() and urllib.parse.unquote_to_bytes(). + +- Issue #17099: Have importlib.find_loader() raise ValueError when __loader__ + is not set, harmonizing with what happens when the attribute is set to None. + +- Expose the O_PATH constant in the os module if it is available. + - Issue #17368: Fix an off-by-one error in the Python JSON decoder that caused a failure while decoding empty object literals when object_pairs_hook was specified.