Comment 18 for bug 885163

Revision history for this message
Andreas Hasenack (ahasenack) wrote :

Here is a practical test case:

#!/usr/bin/python
import pytz
from datetime import datetime
tz = pytz.timezone("Pacific/Apia")
d2 = datetime(2012,1,1)
local = tz.localize(d2)
local.dst()
print "All is good, NOT hit by bug #885163!"

If you get a backtrace, you are hit by the bug. I will use this case for the SRU process.