(self, tzname)
| 868 | UTC = 'UTC' |
| 869 | |
| 870 | def gettz(self, tzname): |
| 871 | # Actual time zone changes are handled by the _gettz_context function |
| 872 | return tz.tzlocal() |
| 873 | |
| 874 | def _gettz_context(self, tzname): |
| 875 | tzname_map = {'Australia/Sydney': self.TZ_AEST, |
nothing calls this directly
no outgoing calls
no test coverage detected