File: Guyana.py

package info (click to toggle)
python-tz 2005a-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 3,364 kB
  • ctags: 2,903
  • sloc: python: 84,245; makefile: 41
file content (28 lines) | stat: -rw-r--r-- 607 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
'''tzinfo timezone information for America/Guyana.'''
from pytz.tzinfo import DstTzInfo
from pytz.tzinfo import memorized_datetime as d
from pytz.tzinfo import memorized_ttinfo as i

class Guyana(DstTzInfo):
    '''America/Guyana timezone definition. See datetime.tzinfo for details'''

    _zone = 'America/Guyana'

    _utc_transition_times = [
d(1,1,1,0,0,0),
d(1915,3,1,3,52,40),
d(1966,5,26,3,45,0),
d(1975,7,31,3,45,0),
d(1991,1,1,3,0,0),
        ]

    _transition_info = [
i(-13980,0,'LMT'),
i(-13500,0,'GBGT'),
i(-13500,0,'GYT'),
i(-10800,0,'GYT'),
i(-14400,0,'GYT'),
        ]

Guyana = Guyana()