~ubuntu-branches/ubuntu/natty/python-tz/natty-proposed

« back to all changes in this revision

Viewing changes to pytz/zoneinfo/Etc/GMT_minus_11.py

  • Committer: Bazaar Package Importer
  • Author(s): Brian Sutherland
  • Date: 2005-09-15 14:45:50 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050915144550-sl8c9l8604ywl8qd
Tags: 2005m-1
New upstream version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 
5
5
class GMT_minus_11(StaticTzInfo):
6
6
    '''Etc/GMT_minus_11 timezone definition. See datetime.tzinfo for details'''
7
 
    _zone = 'Etc/GMT_minus_11'
 
7
    zone = 'Etc/GMT_minus_11'
8
8
    _utcoffset = timedelta(seconds=39600)
9
9
    _tzname = 'GMT-11'
10
10