datetime :: tzinfo :: Class tzinfo
[hide private]
[frames] | no frames]

Class tzinfo



object --+
         |
        tzinfo

Abstract base class for time zone info objects.

Instance Methods [hide private]
 
__getattribute__(...)
x.__getattribute__('name') <==> x.name
 
__new__(T, S, ...)
Returns: a new object with type S, a subtype of T
 
__reduce__(...)
-> (cls, state)
 
dst(...)
datetime -> DST offset in minutes east of UTC.
 
fromutc(...)
datetime in UTC -> datetime in local time.
 
tzname(...)
datetime -> string name of time zone.
 
utcoffset(...)
datetime -> minutes east of UTC (negative for west of UTC).

Inherited from object: __delattr__, __hash__, __init__, __reduce_ex__, __repr__, __setattr__, __str__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__getattribute__(...)

 
x.__getattribute__('name') <==> x.name
Overrides: object.__getattribute__

__new__(T, S, ...)

 
Returns:
a new object with type S, a subtype of T

Overrides: object.__new__

__reduce__(...)

 
-> (cls, state)
Overrides: object.__reduce__