summaryrefslogtreecommitdiff
path: root/Lib/tzparse.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1993-06-20 21:02:22 +0000
committerGuido van Rossum <guido@python.org>1993-06-20 21:02:22 +0000
commit5edbff4b7706459a84c8aa8bcd983b2dc684a6ac (patch)
tree36c61806478c5783863d0fe2da200b14b745c09a /Lib/tzparse.py
parenta4cd6cdfb0491c52c5e51277ff1b4ad2767005f4 (diff)
downloadcpython-5edbff4b7706459a84c8aa8bcd983b2dc684a6ac.tar.gz
* aifc.py: don't die on invalid MARK chunk
* calendar.py: remove stuff now built in time; some cleanup and generalization in the calendar printing * cmd.py: use __init__. * tzparse.py: This module is no longer necessary -- use builtin time instead!
Diffstat (limited to 'Lib/tzparse.py')
-rw-r--r--Lib/tzparse.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/tzparse.py b/Lib/tzparse.py
index 6cb08995b7..370d46b912 100644
--- a/Lib/tzparse.py
+++ b/Lib/tzparse.py
@@ -48,7 +48,7 @@ def isdst(time):
import calendar
(tzname, delta, dstname, daystart, hourstart, dayend, hourend) = \
tzparams
- year, month, days, hours, mins, secs, yday, wday = \
+ year, month, days, hours, mins, secs, yday, wday, isdst = \
calendar.gmtime(time - delta*3600)
return (daystart, hourstart) <= (yday+1, hours) < (dayend, hourend)