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

« back to all changes in this revision

Viewing changes to pytz/zoneinfo/America/Swift_Current.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 America/Swift_Current.'''
 
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 Swift_Current(DstTzInfo):
 
7
    '''America/Swift_Current timezone definition. See datetime.tzinfo for details'''
 
8
 
 
9
    _zone = 'America/Swift_Current'
 
10
 
 
11
    _utc_transition_times = [
 
12
d(1,1,1,0,0,0),
 
13
d(1905,9,1,7,11,20),
 
14
d(1918,4,14,9,0,0),
 
15
d(1918,10,31,8,0,0),
 
16
d(1942,2,9,9,0,0),
 
17
d(1945,8,14,23,0,0),
 
18
d(1945,9,30,8,0,0),
 
19
d(1946,4,28,9,0,0),
 
20
d(1946,10,13,8,0,0),
 
21
d(1947,4,27,9,0,0),
 
22
d(1947,9,28,8,0,0),
 
23
d(1948,4,25,9,0,0),
 
24
d(1948,9,26,8,0,0),
 
25
d(1949,4,24,9,0,0),
 
26
d(1949,9,25,8,0,0),
 
27
d(1957,4,28,9,0,0),
 
28
d(1957,10,27,8,0,0),
 
29
d(1959,4,26,9,0,0),
 
30
d(1959,10,25,8,0,0),
 
31
d(1960,4,24,9,0,0),
 
32
d(1960,9,25,8,0,0),
 
33
d(1961,4,30,9,0,0),
 
34
d(1961,9,24,8,0,0),
 
35
d(1972,4,30,9,0,0),
 
36
        ]
 
37
 
 
38
    _transition_info = [
 
39
i(-25860,0,'LMT'),
 
40
i(-25200,0,'MST'),
 
41
i(-21600,3600,'MDT'),
 
42
i(-25200,0,'MST'),
 
43
i(-21600,3600,'MWT'),
 
44
i(-21600,3600,'MPT'),
 
45
i(-25200,0,'MST'),
 
46
i(-21600,3600,'MDT'),
 
47
i(-25200,0,'MST'),
 
48
i(-21600,3600,'MDT'),
 
49
i(-25200,0,'MST'),
 
50
i(-21600,3600,'MDT'),
 
51
i(-25200,0,'MST'),
 
52
i(-21600,3600,'MDT'),
 
53
i(-25200,0,'MST'),
 
54
i(-21600,3600,'MDT'),
 
55
i(-25200,0,'MST'),
 
56
i(-21600,3600,'MDT'),
 
57
i(-25200,0,'MST'),
 
58
i(-21600,3600,'MDT'),
 
59
i(-25200,0,'MST'),
 
60
i(-21600,3600,'MDT'),
 
61
i(-25200,0,'MST'),
 
62
i(-21600,0,'CST'),
 
63
        ]
 
64
 
 
65
Swift_Current = Swift_Current()
 
66