From: R. David Murray Date: Tue, 14 Dec 2010 00:55:46 +0000 (+0000) Subject: #10699: fix docstring for tzset: it does not take a parameter X-Git-Tag: v3.2b2~108 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4d55bf9fcc1acea845e843f52540198f81fe0359;p=python #10699: fix docstring for tzset: it does not take a parameter Thanks to Garrett Cooper for the fix. --- diff --git a/Modules/timemodule.c b/Modules/timemodule.c index 79803f4a01..89666a46ec 100644 --- a/Modules/timemodule.c +++ b/Modules/timemodule.c @@ -715,7 +715,7 @@ time_tzset(PyObject *self, PyObject *unused) } 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\