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.
29 lines
638 B
Python
29 lines
638 B
Python
8 years ago
|
'''tzinfo timezone information for Asia/Ujung_Pandang.'''
|
||
|
from pytz.tzinfo import DstTzInfo
|
||
|
from pytz.tzinfo import memorized_datetime as d
|
||
|
from pytz.tzinfo import memorized_ttinfo as i
|
||
|
|
||
|
class Ujung_Pandang(DstTzInfo):
|
||
|
'''Asia/Ujung_Pandang timezone definition. See datetime.tzinfo for details'''
|
||
|
|
||
|
zone = 'Asia/Ujung_Pandang'
|
||
|
|
||
|
_utc_transition_times = [
|
||
|
d(1,1,1,0,0,0),
|
||
|
d(1919,12,31,16,2,24),
|
||
|
d(1932,10,31,16,2,24),
|
||
|
d(1942,2,8,16,0,0),
|
||
|
d(1945,7,31,15,0,0),
|
||
|
]
|
||
|
|
||
|
_transition_info = [
|
||
|
i(28680,0,'LMT'),
|
||
|
i(28680,0,'MMT'),
|
||
|
i(28800,0,'CIT'),
|
||
|
i(32400,0,'JST'),
|
||
|
i(28800,0,'CIT'),
|
||
|
]
|
||
|
|
||
|
Ujung_Pandang = Ujung_Pandang()
|
||
|
|