- Issue #17977: The documentation for the cadefault argument's default value

in urllib.request.urlopen() is fixed to match the code.
This commit is contained in:
Barry Warsaw 2013-05-14 11:35:16 -04:00
parent dedac52731
commit d486707d2e
2 changed files with 4 additions and 1 deletions

View File

@ -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.

View File

@ -238,6 +238,9 @@ Tests
Documentation
-------------
- Issue #17977: The documentation for the cadefault argument's default value
in urllib.request.urlopen() is fixed to match the code.
- Issue #15940: Specify effect of locale on time functions.
- Issue #6696: add documentation for the Profile objects, and improve