From 9b3bc715980b51ffbf535bcf159ba4be03938c19 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Sun, 20 Jun 1993 21:02:22 +0000 Subject: * 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! --- Lib/tzparse.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/tzparse.py') diff --git a/Lib/tzparse.py b/Lib/tzparse.py index 6cb08995b73..370d46b9123 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) -- cgit v1.2.3