File: YST9.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 (22 lines) | stat: -rw-r--r-- 478 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
'''tzinfo timezone information for SystemV/YST9.'''
from pytz.tzinfo import DstTzInfo
from pytz.tzinfo import memorized_datetime as d
from pytz.tzinfo import memorized_ttinfo as i

class YST9(DstTzInfo):
    '''SystemV/YST9 timezone definition. See datetime.tzinfo for details'''

    _zone = 'SystemV/YST9'

    _utc_transition_times = [
d(1,1,1,0,0,0),
d(1912,10,1,8,59,48),
        ]

    _transition_info = [
i(-32400,0,'LMT'),
i(-32400,0,'GAMT'),
        ]

YST9 = YST9()