summaryrefslogtreecommitdiffstats
path: root/Misc
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 /Misc
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 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2eb41df..470fcff 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -43,6 +43,9 @@ Core and Builtins
Library
-------
+- Issue #9873: The URL parsing functions in urllib.parse now accept
+ ASCII byte sequences as input in addition to character strings.
+
- Issue #10586: The statistics API for the new functools.lru_cache has
been changed to a single cache_info() method returning a named tuple.