Parameters ---------- tz : str or `~datetime.tzinfo`, default: :rc:`timezone` Ticks timezone. If a string, *tz* is passed to `dateutil.tz`.
(self, tz=None)
| 1071 | hms0d = {'byhour': 0, 'byminute': 0, 'bysecond': 0} |
| 1072 | |
| 1073 | def __init__(self, tz=None): |
| 1074 | """ |
| 1075 | Parameters |
| 1076 | ---------- |
| 1077 | tz : str or `~datetime.tzinfo`, default: :rc:`timezone` |
| 1078 | Ticks timezone. If a string, *tz* is passed to `dateutil.tz`. |
| 1079 | """ |
| 1080 | self.tz = _get_tzinfo(tz) |
| 1081 | |
| 1082 | def set_tzinfo(self, tz): |
| 1083 | """ |
nothing calls this directly
no test coverage detected