(self)
| 904 | self._testTzName(self.TZ_EST, 'EST', 'EDT') |
| 905 | |
| 906 | def testTzNameUTC(self): |
| 907 | # Test tzname in a zone without DST |
| 908 | self._testTzName(self.UTC, 'UTC', 'UTC') |
| 909 | |
| 910 | def _testOffset(self, tzval, std_off, dst_off): |
| 911 | func = datetime.utcoffset |
nothing calls this directly
no test coverage detected