You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
706 B
Python
33 lines
706 B
Python
'''tzinfo timezone information for America/Atikokan.'''
|
|
from pytz.tzinfo import DstTzInfo
|
|
from pytz.tzinfo import memorized_datetime as d
|
|
from pytz.tzinfo import memorized_ttinfo as i
|
|
|
|
class Atikokan(DstTzInfo):
|
|
'''America/Atikokan timezone definition. See datetime.tzinfo for details'''
|
|
|
|
zone = 'America/Atikokan'
|
|
|
|
_utc_transition_times = [
|
|
d(1,1,1,0,0,0),
|
|
d(1918,4,14,8,0,0),
|
|
d(1918,10,31,7,0,0),
|
|
d(1940,9,29,6,0,0),
|
|
d(1942,2,9,8,0,0),
|
|
d(1945,8,14,23,0,0),
|
|
d(1945,9,30,7,0,0),
|
|
]
|
|
|
|
_transition_info = [
|
|
i(-21600,0,'CST'),
|
|
i(-18000,3600,'CDT'),
|
|
i(-21600,0,'CST'),
|
|
i(-18000,3600,'CDT'),
|
|
i(-18000,3600,'CWT'),
|
|
i(-18000,3600,'CPT'),
|
|
i(-18000,0,'EST'),
|
|
]
|
|
|
|
Atikokan = Atikokan()
|
|
|