summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSenthil Kumaran <orsenthil@gmail.com>2010-07-18 02:27:10 (GMT)
committerSenthil Kumaran <orsenthil@gmail.com>2010-07-18 02:27:10 (GMT)
commit5dba6dfe6a8224a54c3a4fd5cc2393a734718a77 (patch)
treefe2743a3d25ca6bae5a1549477874eb390958489 /Misc
parent5d10d33cd549e93079b7c4cf5f15eb0529c9bd41 (diff)
downloadcpython-5dba6dfe6a8224a54c3a4fd5cc2393a734718a77.zip
cpython-5dba6dfe6a8224a54c3a4fd5cc2393a734718a77.tar.gz
cpython-5dba6dfe6a8224a54c3a4fd5cc2393a734718a77.tar.bz2
Fixing Issue1712522 - urllib.quote to support Unicode. The default
encoding='utf-8' and errors='strict'.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d86566e..819a401 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -18,6 +18,10 @@ Core and Builtins
Library
-------
+- Issue 1712522: urllib.quote supports Unicode String with encoding and errors
+ parameter. The encoding parameter defaults to utf-8 and errors to strict.
+ Patch by Matt Giuca.
+
- Issue #7646: The fnmatch pattern cache no longer grows without bound.
- Issue #9136: Fix 'dictionary changed size during iteration'