summaryrefslogtreecommitdiff
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-03-14 21:31:37 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2013-03-14 21:31:37 +0200
commit8ea4616f16c8f89289e73849880499ef309ce18a (patch)
tree56df4eed0eda51947684a7b4ce894acb8741571c /Misc/NEWS
parent3b220e11eb8e4768cbdef076d0ac133aaf4a2248 (diff)
downloadcpython-git-8ea4616f16c8f89289e73849880499ef309ce18a.tar.gz
Issue #1285086: Get rid of the refcounting hack and speed up
urllib.parse.unquote() and urllib.parse.unquote_to_bytes().
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 9b4aa52137..fc6a384d13 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -233,6 +233,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 #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.