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

« back to all changes in this revision

Viewing changes to pytz/zoneinfo/Africa/Ndjamena.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 Africa/Ndjamena.'''
 
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 Ndjamena(DstTzInfo):
 
7
    '''Africa/Ndjamena timezone definition. See datetime.tzinfo for details'''
 
8
 
 
9
    _zone = 'Africa/Ndjamena'
 
10
 
 
11
    _utc_transition_times = [
 
12
d(1,1,1,0,0,0),
 
13
d(1911,12,31,22,59,48),
 
14
d(1979,10,13,23,0,0),
 
15
d(1980,3,7,22,0,0),
 
16
        ]
 
17
 
 
18
    _transition_info = [
 
19
i(3600,0,'LMT'),
 
20
i(3600,0,'WAT'),
 
21
i(7200,3600,'WAST'),
 
22
i(3600,0,'WAT'),
 
23
        ]
 
24
 
 
25
Ndjamena = Ndjamena()
 
26