diff options
author | Gregory P. Smith <greg@krypto.org> | 2019-04-10 09:17:48 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-10 09:17:48 (GMT) |
commit | 2fb2bc81c3f40d73945c6102569495140e1182c7 (patch) | |
tree | ef37cc18b76f5c7ada2788005b0f08c6b77fbf85 /Doc | |
parent | 750d74fac5c510e39958b3f79641fe54096ee54f (diff) | |
download | cpython-2fb2bc81c3f40d73945c6102569495140e1182c7.zip cpython-2fb2bc81c3f40d73945c6102569495140e1182c7.tar.gz cpython-2fb2bc81c3f40d73945c6102569495140e1182c7.tar.bz2 |
bpo-14826: document that URLopener quotes fullurl. (GH-12758)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/urllib.request.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Doc/library/urllib.request.rst b/Doc/library/urllib.request.rst index f56da1b..14fa27b 100644 --- a/Doc/library/urllib.request.rst +++ b/Doc/library/urllib.request.rst @@ -1435,6 +1435,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) |