summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-03-14 19:34:55 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-03-14 19:34:55 (GMT)
commitc12956ddf23d87d8b1e86dceff4e803285f40141 (patch)
tree3f9a80031a5b92664be3a4a855e3f2688a03d3f3 /Misc
parentdfde54b66f720f3d476916535acfff7811bd513e (diff)
parenta9d24e67666790974b6b3ac30c1868e55207b0e5 (diff)
downloadcpython-c12956ddf23d87d8b1e86dceff4e803285f40141.zip
cpython-c12956ddf23d87d8b1e86dceff4e803285f40141.tar.gz
cpython-c12956ddf23d87d8b1e86dceff4e803285f40141.tar.bz2
Issue #1285086: Get rid of the refcounting hack and speed up
urllib.parse.unquote() and urllib.parse.unquote_to_bytes().
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 c5a5877..a6d05fe 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -280,6 +280,9 @@ Core and Builtins
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.