From 6cd40aa3107ce1f166d2245a82b9af616f41bcf2 Mon Sep 17 00:00:00 2001 From: Daniel Himmelstein Date: Thu, 10 Aug 2017 20:07:24 -0400 Subject: [PATCH] Fix typo in 3.7 What's New Noticed the typo while reading https://docs.python.org/3.7/whatsnew/3.7.html#urllib-parse --- Doc/whatsnew/3.7.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst index 21e9c568ae4241..a92ad9f1df4007 100644 --- a/Doc/whatsnew/3.7.rst +++ b/Doc/whatsnew/3.7.rst @@ -247,7 +247,7 @@ Peterson.) urllib.parse ------------ -:func:`urllib.parse.quote` has been updated to from RFC 2396 to RFC 3986, +:func:`urllib.parse.quote` has been updated from RFC 2396 to RFC 3986, adding `~` to the set of characters that is never quoted by default. (Contributed by Christian Theune and Ratnadeep Debnath in :issue:`16285`.)