diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2004-07-20 22:34:37 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2004-07-20 22:34:37 (GMT) |
commit | dc8e1942dddd6923fe9cfbadc6644a9888094699 (patch) | |
tree | 2b988d6a58c1036f4e0165216ba2d41ca0ea0a71 /Modules/timemodule.c | |
parent | 0260519c52e7170089bba4c182b1a88176ac9176 (diff) | |
download | cpython-dc8e1942dddd6923fe9cfbadc6644a9888094699.zip cpython-dc8e1942dddd6923fe9cfbadc6644a9888094699.tar.gz cpython-dc8e1942dddd6923fe9cfbadc6644a9888094699.tar.bz2 |
Fix SF #994580, typo in time.tzsets docstring. Backport candidate
Diffstat (limited to 'Modules/timemodule.c')
-rw-r--r-- | Modules/timemodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/timemodule.c b/Modules/timemodule.c index f855796..21745e0 100644 --- a/Modules/timemodule.c +++ b/Modules/timemodule.c @@ -591,7 +591,7 @@ PyDoc_STRVAR(tzset_doc, \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\ -standard Uniz timezone format as documented in the tzset man page\n\ +standard Unix timezone format as documented in the tzset man page\n\ (eg. 'US/Eastern', 'Europe/Amsterdam'). Unknown timezones will silently\n\ fall back to UTC. If the TZ environment variable is not set, the local\n\ timezone is set to the systems best guess of wallclock time.\n\ |