(self, tz)
| 128 | self.ts.normalize() |
| 129 | |
| 130 | def time_tz_convert(self, tz): |
| 131 | if self.ts.tz is not None: |
| 132 | self.ts.tz_convert(tz) |
| 133 | |
| 134 | def time_tz_localize(self, tz): |
| 135 | if self.ts.tz is None: |
nothing calls this directly
no test coverage detected