(self)
| 916 | self._testOffset(self.TZ_EST, timedelta(hours=-5), timedelta(hours=-4)) |
| 917 | |
| 918 | def testOffsetUTC(self): |
| 919 | self._testOffset(self.UTC, timedelta(0), timedelta(0)) |
| 920 | |
| 921 | def _testDST(self, tzval, dst_dst): |
| 922 | func = datetime.dst |
nothing calls this directly
no test coverage detected