diff options
author | Tim Peters <tim.peters@gmail.com> | 2003-01-09 19:52:17 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2003-01-09 19:52:17 (GMT) |
commit | 312141c51fa0827c27358c7a1f316d934f07f250 (patch) | |
tree | acaefcd2f5c250d00175c37ec57dc236de4feda7 /Doc | |
parent | 663004bb3dc8f509f869cab9728e9df516ae10b6 (diff) | |
download | cpython-312141c51fa0827c27358c7a1f316d934f07f250.zip cpython-312141c51fa0827c27358c7a1f316d934f07f250.tar.gz cpython-312141c51fa0827c27358c7a1f316d934f07f250.tar.bz2 |
Purged reference to defunct datetimetz.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/tzinfo-examples.py | 2 |
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 |