| Class Method | fromLocalTimeStamp |
Create a time zone with a fixed offset corresponding to a time stamp in the system's locally configured time zone. |
| Class Method | fromSignHoursMinutes |
Construct a FixedOffsetTimeZone from an offset described by sign ('+' or '-'), hours, and minutes. |
| Method | __init__ |
Construct a FixedOffsetTimeZone with a fixed offset. |
| Method | dst |
Return a zero TimeDelta for the daylight saving time offset, since there is never one. |
| Method | tzname |
Return a string describing this timezone. |
| Method | utcoffset |
Return the given timezone's offset from UTC. |
| Instance Variable | name |
A str giving the name of this timezone; the name just includes how much time this offset represents. |
| Instance Variable | offset |
A TimeDelta giving the amount of time this timezone is offset. |
| Parameters | |
timeStamp:float | Undocumented |
| Returns | |
FixedOffsetTimeZone | Undocumented |
FixedOffsetTimeZone from an offset described by sign ('+' or '-'), hours, and minutes.| Parameters | |
sign:str | A string describing the positive or negative-ness of the offset. |
hours:int | The number of hours in the offset. |
minutes:int | The number of minutes in the offset |
| Returns | |
FixedOffsetTimeZone | A time zone with the given offset, and a name describing the offset. |
| Note | |
| For protocol compatibility with AMP, this method never uses 'Z' | |
FixedOffsetTimeZone with a fixed offset.| Parameters | |
offset:TimeDelta | a delta representing the offset from UTC. |
name:Optional[ | A name to be given for this timezone. |