~ubuntu-branches/ubuntu/trusty/python-tz/trusty-updates

« back to all changes in this revision

Viewing changes to pytz/zoneinfo/Pacific/Efate.py

  • Committer: Bazaar Package Importer
  • Author(s): Brian Sutherland
  • Date: 2005-02-08 02:14:33 UTC
  • Revision ID: james.westby@ubuntu.com-20050208021433-t6c9teignwsm2ywo
Tags: upstream-2005a
ImportĀ upstreamĀ versionĀ 2005a

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
'''tzinfo timezone information for Pacific/Efate.'''
 
2
from pytz.tzinfo import DstTzInfo
 
3
from pytz.tzinfo import memorized_datetime as d
 
4
from pytz.tzinfo import memorized_ttinfo as i
 
5
 
 
6
class Efate(DstTzInfo):
 
7
    '''Pacific/Efate timezone definition. See datetime.tzinfo for details'''
 
8
 
 
9
    _zone = 'Pacific/Efate'
 
10
 
 
11
    _utc_transition_times = [
 
12
d(1,1,1,0,0,0),
 
13
d(1912,1,12,12,46,44),
 
14
d(1983,9,24,13,0,0),
 
15
d(1984,3,24,12,0,0),
 
16
d(1984,10,22,13,0,0),
 
17
d(1985,3,23,12,0,0),
 
18
d(1985,9,28,13,0,0),
 
19
d(1986,3,22,12,0,0),
 
20
d(1986,9,27,13,0,0),
 
21
d(1987,3,28,12,0,0),
 
22
d(1987,9,26,13,0,0),
 
23
d(1988,3,26,12,0,0),
 
24
d(1988,9,24,13,0,0),
 
25
d(1989,3,25,12,0,0),
 
26
d(1989,9,23,13,0,0),
 
27
d(1990,3,24,12,0,0),
 
28
d(1990,9,22,13,0,0),
 
29
d(1991,3,23,12,0,0),
 
30
d(1991,9,28,13,0,0),
 
31
d(1992,1,25,12,0,0),
 
32
d(1992,10,24,13,0,0),
 
33
d(1993,1,23,12,0,0),
 
34
        ]
 
35
 
 
36
    _transition_info = [
 
37
i(40380,0,'LMT'),
 
38
i(39600,0,'VUT'),
 
39
i(43200,3600,'VUST'),
 
40
i(39600,0,'VUT'),
 
41
i(43200,3600,'VUST'),
 
42
i(39600,0,'VUT'),
 
43
i(43200,3600,'VUST'),
 
44
i(39600,0,'VUT'),
 
45
i(43200,3600,'VUST'),
 
46
i(39600,0,'VUT'),
 
47
i(43200,3600,'VUST'),
 
48
i(39600,0,'VUT'),
 
49
i(43200,3600,'VUST'),
 
50
i(39600,0,'VUT'),
 
51
i(43200,3600,'VUST'),
 
52
i(39600,0,'VUT'),
 
53
i(43200,3600,'VUST'),
 
54
i(39600,0,'VUT'),
 
55
i(43200,3600,'VUST'),
 
56
i(39600,0,'VUT'),
 
57
i(43200,3600,'VUST'),
 
58
i(39600,0,'VUT'),
 
59
        ]
 
60
 
 
61
Efate = Efate()
 
62