This issue tracker has been migrated to GitHub ,
and is currently read-only.
For more information,
see the GitHub FAQs in the Python's Developer Guide.
Created on 2013年05月14日 15:31 by barry, last changed 2022年04月11日 14:57 by admin. This issue is now closed.
| Messages (3) | |||
|---|---|---|---|
| msg189228 - (view) | Author: Barry A. Warsaw (barry) * (Python committer) | Date: 2013年05月14日 15:31 | |
The docs[1] say: .. function:: urlopen(url, data=None[, timeout], *, cafile=None, capath=None, cadefault=True) The code[2] says: def urlopen(url, data=None, timeout=socket._GLOBAL_DEFAULT_TIMEOUT, *, cafile=None, capath=None, cadefault=False): Obviously, the code cannot be changed in a stable release, and whether the default should be changed for 3.4 is a separate discussion. For now, the docs should be fixed to reflect the code. [1] Doc/library/urllib.request.rst [2] Lib/urllib/request.py |
|||
| msg189229 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2013年05月14日 15:38 | |
New changeset e2288953e9f1 by Barry Warsaw in branch '3.3': - Issue #17977: The documentation for the cadefault argument's default value http://hg.python.org/cpython/rev/e2288953e9f1 New changeset 85ecc4761a6c by Barry Warsaw in branch 'default': - Issue #17977: The documentation for the cadefault argument's default value http://hg.python.org/cpython/rev/85ecc4761a6c |
|||
| msg189257 - (view) | Author: Senthil Kumaran (orsenthil) * (Python committer) | Date: 2013年05月14日 23:43 | |
OMG. That's a glaring mistake. Thanks for fixing it. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:57:45 | admin | set | github: 62177 |
| 2013年05月14日 23:43:44 | orsenthil | set | nosy:
+ orsenthil messages: + msg189257 |
| 2013年05月14日 15:39:46 | barry | set | status: open -> closed resolution: fixed |
| 2013年05月14日 15:38:50 | python-dev | set | nosy:
+ python-dev messages: + msg189229 |
| 2013年05月14日 15:31:19 | barry | create | |