(self)
| 946 | timedelta(0)) |
| 947 | |
| 948 | def testTimeOnlyDSTLocalDST(self): |
| 949 | with TZEnvContext(self.TZ_EST): |
| 950 | self.assertIs(dt_time(13, 20, tzinfo=tz.tzlocal()).dst(), |
| 951 | None) |
| 952 | |
| 953 | def testUTCEquality(self): |
| 954 | with TZEnvContext(self.UTC): |
nothing calls this directly
no test coverage detected