diff options
author | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2010-07-03 03:27:12 (GMT) |
---|---|---|
committer | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2010-07-03 03:27:12 (GMT) |
commit | 1f6e2257dc552e8b5bb3485d2fa7f147288ca04d (patch) | |
tree | 343f6f1abc03abb03ecf7b8e356db6ce878b8605 | |
parent | 0df5a858e78e113f7af20a1055d60c88e6acb82a (diff) | |
download | cpython-1f6e2257dc552e8b5bb3485d2fa7f147288ca04d.zip cpython-1f6e2257dc552e8b5bb3485d2fa7f147288ca04d.tar.gz cpython-1f6e2257dc552e8b5bb3485d2fa7f147288ca04d.tar.bz2 |
Revert r81681 (issue 8810).
-rw-r--r-- | Modules/datetimemodule.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Modules/datetimemodule.c b/Modules/datetimemodule.c index c12a7a6..f907093 100644 --- a/Modules/datetimemodule.c +++ b/Modules/datetimemodule.c @@ -3026,8 +3026,7 @@ static PyMethodDef tzinfo_methods[] = { PyDoc_STR("datetime -> DST offset in minutes east of UTC.")}, {"fromutc", (PyCFunction)tzinfo_fromutc, METH_O, - PyDoc_STR("datetime -> timedelta showing offset from UTC, negative " - "values indicating West of UTC")}, + PyDoc_STR("datetime in UTC -> datetime in local time.")}, {"__reduce__", (PyCFunction)tzinfo_reduce, METH_NOARGS, PyDoc_STR("-> (cls, state)")}, |