summaryrefslogtreecommitdiffstats
path: root/Doc/lib/tzinfo-examples.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2003-01-09 19:52:17 (GMT)
committerTim Peters <tim.peters@gmail.com>2003-01-09 19:52:17 (GMT)
commit312141c51fa0827c27358c7a1f316d934f07f250 (patch)
treeacaefcd2f5c250d00175c37ec57dc236de4feda7 /Doc/lib/tzinfo-examples.py
parent663004bb3dc8f509f869cab9728e9df516ae10b6 (diff)
downloadcpython-312141c51fa0827c27358c7a1f316d934f07f250.zip
cpython-312141c51fa0827c27358c7a1f316d934f07f250.tar.gz
cpython-312141c51fa0827c27358c7a1f316d934f07f250.tar.bz2
Purged reference to defunct datetimetz.
Diffstat (limited to 'Doc/lib/tzinfo-examples.py')
-rw-r--r--Doc/lib/tzinfo-examples.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/tzinfo-examples.py b/Doc/lib/tzinfo-examples.py
index 70a4966..cea0309 100644
--- a/Doc/lib/tzinfo-examples.py
+++ b/Doc/lib/tzinfo-examples.py
@@ -117,7 +117,7 @@ class USTimeZone(tzinfo):
if dt is None or dt.tzinfo is None:
# An exception may be sensible here, in one or both cases.
# It depends on how you want to treat them. The astimezone()
- # implementation always passes a datetimetz with
+ # implementation always passes a datetime with
# dt.tzinfo == self.
return ZERO
assert dt.tzinfo is self