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.

classification
Title: fix incorrect help doc with time.tzset
Type: behavior Stage: resolved
Components: Documentation Versions: Python 3.1, Python 3.2, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, ngie, r.david.murray
Priority: normal Keywords: patch

Created on 2010-12-13 23:07 by ngie, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
fix-timemodule-helpdoc.patch ngie, 2010-12-13 23:07
Messages (2)
msg123908 - (view) Author: Enji Cooper (ngie) * Date: 2010-12-13 23:07
The following patch fixes the help docstring as time.tzset when called doesn't require any arguments (as noted in the source and also in the library documentation).

The patch produced was against trunk, but this appears to be an issue on release-maint26 and release-maint27 (and the patch applies cleanly) as the text is the same.
msg123914 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2010-12-14 00:57
Thanks.  Fixed in py3k in r87221.  I'll backport it when I backport my other doc updates.

FYI, 'trunk' is no longer a live branch.  Development trunk is now py3k.  2.6 only gets security fixes.
History
Date User Action Args
2022-04-11 14:57:10adminsetgithub: 54908
2010-12-14 00:58:01r.david.murraysettitle: [patch] fix incorrect help doc with time.tzset -> fix incorrect help doc with time.tzset
2010-12-14 00:57:41r.david.murraysetstatus: open -> closed

type: behavior
versions: + Python 3.1, - Python 2.6, Python 3.3
nosy: + r.david.murray

messages: + msg123914
resolution: fixed
stage: resolved
2010-12-13 23:07:10ngiecreate