Commit deda8cb8 authored by Sean Reifscheider's avatar Sean Reifscheider

Issue8810: Clearing up docstring for tzinfo.utcoffset.

parent 2c12ab18
......@@ -3223,8 +3223,8 @@ static PyMethodDef tzinfo_methods[] = {
PyDoc_STR("datetime -> string name of time zone.")},
{"utcoffset", (PyCFunction)tzinfo_utcoffset, METH_O,
PyDoc_STR("datetime -> minutes east of UTC (negative for "
"west of UTC).")},
PyDoc_STR("datetime -> timedelta showing offset from UTC, negative "
"values indicating West of UTC")},
{"dst", (PyCFunction)tzinfo_dst, METH_O,
PyDoc_STR("datetime -> DST offset in minutes east of UTC.")},
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment