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

« back to all changes in this revision

Viewing changes to pytz/zoneinfo/SystemV/PST8.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 SystemV/PST8.'''
 
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 PST8(DstTzInfo):
 
7
    '''SystemV/PST8 timezone definition. See datetime.tzinfo for details'''
 
8
 
 
9
    _zone = 'SystemV/PST8'
 
10
 
 
11
    _utc_transition_times = [
 
12
d(1,1,1,0,0,0),
 
13
d(1998,4,27,8,30,0),
 
14
        ]
 
15
 
 
16
    _transition_info = [
 
17
i(-30600,0,'PNT'),
 
18
i(-28800,0,'PST'),
 
19
        ]
 
20
 
 
21
PST8 = PST8()
 
22