bpo-16285: Update urllib quoting to RFC 3986 (#173)
* bpo-16285: Update urllib quoting to RFC 3986
urllib.parse.quote is now based on RFC 3986, and hence
includes `'~'` in the set of characters that is not escaped
by default.
Patch by Christian Theune and Ratnadeep Debnath.
diff --git a/Misc/ACKS b/Misc/ACKS
index e63a061..255318e 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
Binary files differ
diff --git a/Misc/NEWS b/Misc/NEWS
index e7ab3df..74ec8c3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -249,6 +249,10 @@
Library
-------
+- Issue #16285: urrlib.parse.quote is now based on RFC 3986 and hence includes
+ '~' in the set of characters that is not quoted by default. Patch by
+ Christian Theune and Ratnadeep Debnath.
+
- bpo-29532: Altering a kwarg dictionary passed to functools.partial()
no longer affects a partial object after creation.