diff options
author | Barry Warsaw <barry@python.org> | 2013-05-14 15:38:38 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2013-05-14 15:38:38 (GMT) |
commit | b710d7e4c320fb299cf1ab2ec12e3821dc338bc8 (patch) | |
tree | ddc69207abcee04c461e111e7d5eecfa33ce9de7 /Doc/library/urllib.request.rst | |
parent | cde88dcf104a4bd390b32db8b1fe7c7cf7d001e1 (diff) | |
parent | d486707d2e36f3141da3a3845066e7dabfd94198 (diff) | |
download | cpython-b710d7e4c320fb299cf1ab2ec12e3821dc338bc8.zip cpython-b710d7e4c320fb299cf1ab2ec12e3821dc338bc8.tar.gz cpython-b710d7e4c320fb299cf1ab2ec12e3821dc338bc8.tar.bz2 |
- Issue #17977: The documentation for the cadefault argument's default value
in urllib.request.urlopen() is fixed to match the code.
Diffstat (limited to 'Doc/library/urllib.request.rst')
-rw-r--r-- | Doc/library/urllib.request.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/urllib.request.rst b/Doc/library/urllib.request.rst index 3908bd1..055cc82 100644 --- a/Doc/library/urllib.request.rst +++ b/Doc/library/urllib.request.rst @@ -16,7 +16,7 @@ authentication, redirections, cookies and more. The :mod:`urllib.request` module defines the following functions: -.. function:: urlopen(url, data=None[, timeout], *, cafile=None, capath=None, cadefault=True) +.. function:: urlopen(url, data=None[, timeout], *, cafile=None, capath=None, cadefault=False) Open the URL *url*, which can be either a string or a :class:`Request` object. |