A local timezone class

29 Aug
2015
29 Aug
'15
2:53 a.m.
I've written a simple class that implements a local timezone tzinfo object, deferring to what the time module exposes about the local zone.
https://gist.github.com/gvanrossum/ef201fe313719305c4c7
There are two variations: one for systems that support tm_gmtoff and tm_zone, one for systems without those.
Output of the test program:
BetterLocalTimeZone Fri Aug 28 15:50:22 2015 PDT (-0700) Wed Feb 24 15:50:22 2016 PST (-0800)
I'm not entirely sure why we didn't add this to the stdlib ages ago. (Maybe out of a sense of perfectionism, since time.localtime() may be wrong for dates in the past or future where different DST rules or a different standard offset apply? But why would we care, if we're fine with the time module's behavior?)
--
--Guido van Rossum (python.org/~guido)
3018
Age (days ago)
3018
Last active (days ago)
0 comments
1 participants
participants (1)
-
Guido van Rossum