summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Belopolsky <alexander.belopolsky@gmail.com>2010-07-03 03:27:12 (GMT)
committerAlexander Belopolsky <alexander.belopolsky@gmail.com>2010-07-03 03:27:12 (GMT)
commit1f6e2257dc552e8b5bb3485d2fa7f147288ca04d (patch)
tree343f6f1abc03abb03ecf7b8e356db6ce878b8605
parent0df5a858e78e113f7af20a1055d60c88e6acb82a (diff)
downloadcpython-1f6e2257dc552e8b5bb3485d2fa7f147288ca04d.zip
cpython-1f6e2257dc552e8b5bb3485d2fa7f147288ca04d.tar.gz
cpython-1f6e2257dc552e8b5bb3485d2fa7f147288ca04d.tar.bz2
Revert r81681 (issue 8810).
-rw-r--r--Modules/datetimemodule.c3
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)")},