From 182729c6cf42bb004da107c0c49989237a93df0b Mon Sep 17 00:00:00 2001 From: "Gregory P. Smith" Date: Wed, 10 Apr 2019 02:17:48 -0700 Subject: [PATCH] bpo-14826: document that URLopener quotes fullurl. (GH-12758) (cherry picked from commit 2fb2bc81c3f40d73945c6102569495140e1182c7) Co-authored-by: Gregory P. Smith --- Doc/library/urllib.request.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/Doc/library/urllib.request.rst b/Doc/library/urllib.request.rst index 8af97f0746dffe..c58144674cf88d 100644 --- a/Doc/library/urllib.request.rst +++ b/Doc/library/urllib.request.rst @@ -1415,6 +1415,7 @@ some point in the future. The *data* argument has the same meaning as the *data* argument of :func:`urlopen`. + This method always quotes *fullurl* using :func:`~urllib.parse.quote`. .. method:: open_unknown(fullurl, data=None)