| 4286 | |
| 4287 | # Offset out of range. |
| 4288 | class C6(tzinfo): |
| 4289 | def utcoffset(self, dt): return timedelta(hours=-24) |
| 4290 | def dst(self, dt): return timedelta(hours=24) |
| 4291 | t = cls(1, 1, 1, tzinfo=C6()) |
| 4292 | self.assertRaises(ValueError, t.utcoffset) |
| 4293 | self.assertRaises(ValueError, t.dst) |
no outgoing calls