| 4255 | def test_tzinfo_classes(self): |
| 4256 | cls = self.theclass |
| 4257 | class C1(tzinfo): |
| 4258 | def utcoffset(self, dt): return None |
| 4259 | def dst(self, dt): return None |
| 4260 | def tzname(self, dt): return None |
| 4261 | for t in (cls(1, 1, 1), |
| 4262 | cls(1, 1, 1, tzinfo=None), |
| 4263 | cls(1, 1, 1, tzinfo=C1())): |
no outgoing calls