(self, type, value, traceback)
| 97 | self.set_current_tz(self.tzval) |
| 98 | |
| 99 | def __exit__(self, type, value, traceback): |
| 100 | if self._old_tz is not None: |
| 101 | self.set_current_tz(self._old_tz) |
| 102 | |
| 103 | self._old_tz = None |
| 104 | |
| 105 | def get_current_tz(self): |
| 106 | raise NotImplementedError |
nothing calls this directly
no test coverage detected