summaryrefslogtreecommitdiffstats
path: root/Doc/library/datetime.rst
diff options
context:
space:
mode:
authorXiang Zhang <angwerzx@126.com>2016-12-27 04:23:59 (GMT)
committerXiang Zhang <angwerzx@126.com>2016-12-27 04:23:59 (GMT)
commit6721c7c3b2b25a76b76c1660e8da5efdefd91122 (patch)
treefc7b27cb3000b50d6c3c9cb991a1922132a3b20d /Doc/library/datetime.rst
parent4398c12b472b1e7b653d273500bbcd9988eaec1f (diff)
downloadcpython-6721c7c3b2b25a76b76c1660e8da5efdefd91122.zip
cpython-6721c7c3b2b25a76b76c1660e8da5efdefd91122.tar.gz
cpython-6721c7c3b2b25a76b76c1660e8da5efdefd91122.tar.bz2
Issue #29078: Add the missing import in datetime.time doc example.
Patch by Dhushyanth Ramasamy.
Diffstat (limited to 'Doc/library/datetime.rst')
-rw-r--r--Doc/library/datetime.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/datetime.rst b/Doc/library/datetime.rst
index b42e38d..4f3cfe3 100644
--- a/Doc/library/datetime.rst
+++ b/Doc/library/datetime.rst
@@ -1460,7 +1460,7 @@ Instance methods:
Example:
- >>> from datetime import time, tzinfo
+ >>> from datetime import time, tzinfo, timedelta
>>> class GMT1(tzinfo):
... def utcoffset(self, dt):
... return timedelta(hours=1)