Issue8810: Clearing up docstring for tzinfo.utcoffset.

This commit is contained in:
Sean Reifscheider 2010-06-04 01:51:26 +00:00
parent 9a26aabf89
commit 5e2b27b5e5
1 changed files with 2 additions and 1 deletions

View File

@ -3026,7 +3026,8 @@ static PyMethodDef tzinfo_methods[] = {
PyDoc_STR("datetime -> DST offset in minutes east of UTC.")},
{"fromutc", (PyCFunction)tzinfo_fromutc, METH_O,
PyDoc_STR("datetime in UTC -> datetime in local time.")},
PyDoc_STR("datetime -> timedelta showing offset from UTC, negative "
"values indicating West of UTC")},
{"__reduce__", (PyCFunction)tzinfo_reduce, METH_NOARGS,
PyDoc_STR("-> (cls, state)")},