[Python-checkins] r87221 - python/branches/py3k/Modules/timemodule.c

r.david.murray python-checkins at python.org
Tue Dec 14 01:55:46 CET 2010


Author: r.david.murray
Date: Tue Dec 14 01:55:46 2010
New Revision: 87221

Log:
#10699: fix docstring for tzset: it does not take a parameter

Thanks to Garrett Cooper for the fix.


Modified:
   python/branches/py3k/Modules/timemodule.c

Modified: python/branches/py3k/Modules/timemodule.c
==============================================================================
--- python/branches/py3k/Modules/timemodule.c	(original)
+++ python/branches/py3k/Modules/timemodule.c	Tue Dec 14 01:55:46 2010
@@ -715,7 +715,7 @@
 }
 
 PyDoc_STRVAR(tzset_doc,
-"tzset(zone)\n\
+"tzset()\n\
 \n\
 Initialize, or reinitialize, the local timezone to the value stored in\n\
 os.environ['TZ']. The TZ environment variable should be specified in\n\


More information about the Python-checkins mailing list