summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS7
1 files changed, 7 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 78cae29..3275bfb 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -30,6 +30,13 @@ Core and Builtins
Library
-------
+- Issue #3300: make urllib.parse.[un]quote() default to UTF-8.
+ Code contributed by Matt Giuca. quote() now encodes the input
+ before quoting, unquote() decodes after unquoting. There are
+ new arguments to change the encoding and errors settings.
+ There are also new APIs to skip the encode/decode steps.
+ [un]quote_plus() are also affected.
+
- Issue #2235: numbers.Number now blocks inheritance of the default id()
based hash because that hash mechanism is not correct for numeric types.
All concrete numeric types that inherit from Number (rather than just