(self)
| 936 | timedelta(0)) |
| 937 | |
| 938 | def testTimeOnlyOffsetLocalDST(self): |
| 939 | with TZEnvContext(self.TZ_EST): |
| 940 | self.assertIs(dt_time(13, 20, tzinfo=tz.tzlocal()).utcoffset(), |
| 941 | None) |
| 942 | |
| 943 | def testTimeOnlyDSTLocalUTC(self): |
| 944 | with TZEnvContext(self.UTC): |
nothing calls this directly
no test coverage detected