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

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2007-03-05 02:35:34 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20070305023534-z5ms36hfatosmh2k
Tags: 2007c-0ubuntu1
* New upstream version.
* Set Ubuntu maintainer address.
* Replace the timezone data with a reference to the data in the
  tzdata package.
* One more package not duplicating timezone data. Ubuntu #86599.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
'''tzinfo timezone information for Etc/GMT_minus_13.'''
2
 
from pytz.tzinfo import StaticTzInfo
3
 
from pytz.tzinfo import memorized_timedelta as timedelta
4
 
 
5
 
class GMT_minus_13(StaticTzInfo):
6
 
    '''Etc/GMT_minus_13 timezone definition. See datetime.tzinfo for details'''
7
 
    zone = 'Etc/GMT_minus_13'
8
 
    _utcoffset = timedelta(seconds=46800)
9
 
    _tzname = 'GMT-13'
10
 
 
11
 
GMT_minus_13 = GMT_minus_13()
12