mirror of
https://github.com/janeczku/calibre-web
synced 2024-11-08 02:49:59 +00:00
23 lines
494 B
Python
23 lines
494 B
Python
|
'''tzinfo timezone information for Indian/Kerguelen.'''
|
||
|
from pytz.tzinfo import DstTzInfo
|
||
|
from pytz.tzinfo import memorized_datetime as d
|
||
|
from pytz.tzinfo import memorized_ttinfo as i
|
||
|
|
||
|
class Kerguelen(DstTzInfo):
|
||
|
'''Indian/Kerguelen timezone definition. See datetime.tzinfo for details'''
|
||
|
|
||
|
zone = 'Indian/Kerguelen'
|
||
|
|
||
|
_utc_transition_times = [
|
||
|
d(1,1,1,0,0,0),
|
||
|
d(1950,1,1,0,0,0),
|
||
|
]
|
||
|
|
||
|
_transition_info = [
|
||
|
i(0,0,'zzz'),
|
||
|
i(18000,0,'TFT'),
|
||
|
]
|
||
|
|
||
|
Kerguelen = Kerguelen()
|
||
|
|