[Python-checkins] bpo-14826: document that URLopener quotes fullurl. (GH-12758)

Gregory P. Smith webhook-mailer at python.org
Wed Apr 10 05:17:55 EDT 2019


https://github.com/python/cpython/commit/2fb2bc81c3f40d73945c6102569495140e1182c7
commit: 2fb2bc81c3f40d73945c6102569495140e1182c7
branch: master
author: Gregory P. Smith <greg at krypto.org>
committer: GitHub <noreply at github.com>
date: 2019-04-10T02:17:48-07:00
summary:

bpo-14826: document that URLopener quotes fullurl. (GH-12758)

files:
M Doc/library/urllib.request.rst

diff --git a/Doc/library/urllib.request.rst b/Doc/library/urllib.request.rst
index f56da1b341fe..14fa27bb08af 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)
 



More information about the Python-checkins mailing list