tzparse.py

Guido.van.Rossum@cwi.nl
Mon, 29 Mar 1993 12:28:04 +0100

Now daylight saving time has arrived (at least in Europe), I've
discovered a bug in tzparse.py. Please apply this patch if your
"mclock" is now running two hours behind:

===================================================================
RCS file: /ufs/guido/CVSROOT/python/lib/tzparse.py,v
retrieving revision 1.1
diff -c -1 -r1.1 tzparse.py
*** 1.1 1992/10/18 17:09:58
--- tzparse.py 1993/03/29 11:23:50
***************
*** 42,44 ****
timezone = tzparams[1] * 3600
! altzone = timezone + 3600
daylight = 1
--- 42,44 ----
timezone = tzparams[1] * 3600
! altzone = timezone - 3600
daylight = 1

--Guido van Rossum, CWI, Amsterdam <Guido.van.Rossum@cwi.nl>