summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.2.rst
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2010-11-30 15:48:08 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2010-11-30 15:48:08 (GMT)
commit9fc443cf590c76d4b979c46dc954d3956cee0319 (patch)
tree16384a522e3cbc37539a86745f47ee6f60f18239 /Doc/whatsnew/3.2.rst
parent43f0c27be78ce11d871c8a80ec1251cc82010d19 (diff)
downloadcpython-9fc443cf590c76d4b979c46dc954d3956cee0319.zip
cpython-9fc443cf590c76d4b979c46dc954d3956cee0319.tar.gz
cpython-9fc443cf590c76d4b979c46dc954d3956cee0319.tar.bz2
Issue 9873: the URL parsing functions now accept ASCII encoded byte sequences in addition to character strings
Diffstat (limited to 'Doc/whatsnew/3.2.rst')
-rw-r--r--Doc/whatsnew/3.2.rst8
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst
index 2d1f0ef..056e2fa 100644
--- a/Doc/whatsnew/3.2.rst
+++ b/Doc/whatsnew/3.2.rst
@@ -573,6 +573,14 @@ New, Improved, and Deprecated Modules
(Contributed by Rodolpho Eckhardt and Nick Coghlan, :issue:`10220`.)
.. XXX: Mention inspect.getattr_static (Michael Foord)
+.. XXX: Mention urllib.parse changes
+ Issue 9873 (Nick Coghlan):
+ - ASCII byte sequence support in URL parsing
+ - named tuple for urldefrag return value
+ Issue 5468 (Dan Mahn) for urlencode:
+ - bytes input support
+ - non-UTF8 percent encoding of non-ASCII characters
+ Issue 2987 for IPv6 (RFC2732) support in urlparse
Multi-threading
===============