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.
25 lines
515 B
Python
25 lines
515 B
Python
8 years ago
|
'''tzinfo timezone information for Africa/Bissau.'''
|
||
|
from pytz.tzinfo import DstTzInfo
|
||
|
from pytz.tzinfo import memorized_datetime as d
|
||
|
from pytz.tzinfo import memorized_ttinfo as i
|
||
|
|
||
|
class Bissau(DstTzInfo):
|
||
|
'''Africa/Bissau timezone definition. See datetime.tzinfo for details'''
|
||
|
|
||
|
zone = 'Africa/Bissau'
|
||
|
|
||
|
_utc_transition_times = [
|
||
|
d(1,1,1,0,0,0),
|
||
|
d(1911,5,26,1,2,20),
|
||
|
d(1975,1,1,1,0,0),
|
||
|
]
|
||
|
|
||
|
_transition_info = [
|
||
|
i(-3720,0,'LMT'),
|
||
|
i(-3600,0,'WAT'),
|
||
|
i(0,0,'GMT'),
|
||
|
]
|
||
|
|
||
|
Bissau = Bissau()
|
||
|
|