Class representing a time zone.
The representation is simply the offset, in seconds, from UTC
.
__init__ |
Constructor for a named time zone. |
GetOffset |
Return the offset of this time zone from UTC , in seconds. |
Make |
Create a time zone with the given offset in seconds. |
wx.DateTime.
TimeZone
(object)¶Possible constructors:
TimeZone(tz)
TimeZone(offset=0)
Class representing a time zone.
__init__
(self, *args, **kw)¶__init__ (self, tz)
Constructor for a named time zone.
Parameters: | tz (DateTime.TZ) – |
---|
__init__ (self, offset=0)
Constructor for the given offset in seconds.
Parameters: | offset (long) – |
---|
GetOffset
(self)¶Return the offset of this time zone from UTC
, in seconds.
Return type: | long |
---|
Make
(offset)¶Create a time zone with the given offset in seconds.
Parameters: | offset (long) – |
---|---|
Return type: | wx.DateTime.TimeZone |