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

« back to all changes in this revision

Viewing changes to pytz/zoneinfo/America/Paramaribo.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/Paramaribo.'''
 
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 Paramaribo(DstTzInfo):
 
7
    '''America/Paramaribo timezone definition. See datetime.tzinfo for details'''
 
8
 
 
9
    _zone = 'America/Paramaribo'
 
10
 
 
11
    _utc_transition_times = [
 
12
d(1,1,1,0,0,0),
 
13
d(1911,1,1,3,40,40),
 
14
d(1935,1,1,3,40,52),
 
15
d(1945,10,1,3,40,36),
 
16
d(1975,11,20,3,30,0),
 
17
d(1984,10,1,3,30,0),
 
18
        ]
 
19
 
 
20
    _transition_info = [
 
21
i(-13260,0,'LMT'),
 
22
i(-13260,0,'PMT'),
 
23
i(-13260,0,'PMT'),
 
24
i(-12600,0,'NEGT'),
 
25
i(-12600,0,'SRT'),
 
26
i(-10800,0,'SRT'),
 
27
        ]
 
28
 
 
29
Paramaribo = Paramaribo()
 
30