dateutil.tz
index
/astro-wise/AWEHOME/x86_64/AWBASE/common/lib/python2.5/site-packages/dateutil/tz.py

Copyright (c) 2003  Gustavo Niemeyer <niemeyer@conectiva.com>
 
This module offers extensions to the standard python 2.3+
datetime module.

 
Modules
       
datetime
os
struct
time

 
Classes
       
datetime.tzinfo(__builtin__.object)
tzfile
tzlocal
tzoffset
tzrange
tzstr
tzutc
tzical

 
class tzfile(datetime.tzinfo)
    
Method resolution order:
tzfile
datetime.tzinfo
__builtin__.object

Methods defined here:
__eq__(self, other)
__init__(self, fileobj)
__ne__(self, other)
__repr__(self)
dst(self, dt)
tzname(self, dt)
utcoffset(self, dt)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Methods inherited from datetime.tzinfo:
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__reduce__(...)
-> (cls, state)
fromutc(...)
datetime in UTC -> datetime in local time.

Data and other attributes inherited from datetime.tzinfo:
__new__ = <built-in method __new__ of type object at 0x2aaab0900ea0>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class tzical
     Methods defined here:
__init__(self, fileobj)
__repr__(self)
get(self, tzid=None)
keys(self)

 
class tzlocal(datetime.tzinfo)
    
Method resolution order:
tzlocal
datetime.tzinfo
__builtin__.object

Methods defined here:
__eq__(self, other)
__ne__(self, other)
__repr__(self)
dst(self, dt)
tzname(self, dt)
utcoffset(self, dt)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Methods inherited from datetime.tzinfo:
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__reduce__(...)
-> (cls, state)
fromutc(...)
datetime in UTC -> datetime in local time.

Data and other attributes inherited from datetime.tzinfo:
__new__ = <built-in method __new__ of type object at 0x2aaab0900ea0>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class tzoffset(datetime.tzinfo)
    
Method resolution order:
tzoffset
datetime.tzinfo
__builtin__.object

Methods defined here:
__eq__(self, other)
__init__(self, name, offset)
__ne__(self, other)
__repr__(self)
dst(self, dt)
tzname(self, dt)
utcoffset(self, dt)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Methods inherited from datetime.tzinfo:
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__reduce__(...)
-> (cls, state)
fromutc(...)
datetime in UTC -> datetime in local time.

Data and other attributes inherited from datetime.tzinfo:
__new__ = <built-in method __new__ of type object at 0x2aaab0900ea0>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class tzrange(datetime.tzinfo)
    
Method resolution order:
tzrange
datetime.tzinfo
__builtin__.object

Methods defined here:
__eq__(self, other)
__init__(self, stdabbr, stdoffset=None, dstabbr=None, dstoffset=None, start=None, end=None)
__ne__(self, other)
__repr__(self)
dst(self, dt)
tzname(self, dt)
utcoffset(self, dt)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Methods inherited from datetime.tzinfo:
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__reduce__(...)
-> (cls, state)
fromutc(...)
datetime in UTC -> datetime in local time.

Data and other attributes inherited from datetime.tzinfo:
__new__ = <built-in method __new__ of type object at 0x2aaab0900ea0>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class tzstr(tzrange)
    
Method resolution order:
tzstr
tzrange
datetime.tzinfo
__builtin__.object

Methods defined here:
__init__(self, s)
__repr__(self)

Methods inherited from tzrange:
__eq__(self, other)
__ne__(self, other)
dst(self, dt)
tzname(self, dt)
utcoffset(self, dt)

Data descriptors inherited from tzrange:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Methods inherited from datetime.tzinfo:
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__reduce__(...)
-> (cls, state)
fromutc(...)
datetime in UTC -> datetime in local time.

Data and other attributes inherited from datetime.tzinfo:
__new__ = <built-in method __new__ of type object at 0x2aaab0900ea0>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
class tzutc(datetime.tzinfo)
    
Method resolution order:
tzutc
datetime.tzinfo
__builtin__.object

Methods defined here:
__eq__(self, other)
__ne__(self, other)
__repr__(self)
dst(self, dt)
tzname(self, dt)
utcoffset(self, dt)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Methods inherited from datetime.tzinfo:
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__reduce__(...)
-> (cls, state)
fromutc(...)
datetime in UTC -> datetime in local time.

Data and other attributes inherited from datetime.tzinfo:
__new__ = <built-in method __new__ of type object at 0x2aaab0900ea0>
T.__new__(S, ...) -> a new object with type S, a subtype of T

 
Functions
       
gettz(name=None)

 
Data
        __all__ = ['tzutc', 'tzoffset', 'tzlocal', 'tzfile', 'tzrange', 'tzstr', 'tzical', 'gettz']
__author__ = 'Gustavo Niemeyer <niemeyer@conectiva.com>'
__license__ = 'PSF License'

 
Author
        Gustavo Niemeyer <niemeyer@conectiva.com>