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

« back to all changes in this revision

Viewing changes to pytz/zoneinfo/America/Tegucigalpa.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/Tegucigalpa.'''
 
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 Tegucigalpa(DstTzInfo):
 
7
    '''America/Tegucigalpa timezone definition. See datetime.tzinfo for details'''
 
8
 
 
9
    _zone = 'America/Tegucigalpa'
 
10
 
 
11
    _utc_transition_times = [
 
12
d(1,1,1,0,0,0),
 
13
d(1921,4,1,5,48,52),
 
14
d(1987,5,3,6,0,0),
 
15
d(1987,9,27,5,0,0),
 
16
d(1988,5,1,6,0,0),
 
17
d(1988,9,25,5,0,0),
 
18
        ]
 
19
 
 
20
    _transition_info = [
 
21
i(-20940,0,'LMT'),
 
22
i(-21600,0,'CST'),
 
23
i(-18000,3600,'CDT'),
 
24
i(-21600,0,'CST'),
 
25
i(-18000,3600,'CDT'),
 
26
i(-21600,0,'CST'),
 
27
        ]
 
28
 
 
29
Tegucigalpa = Tegucigalpa()
 
30