| 4469 | |
| 4470 | # Offset out of range. |
| 4471 | class C6(tzinfo): |
| 4472 | def utcoffset(self, dt): return timedelta(hours=-24) |
| 4473 | def dst(self, dt): return timedelta(hours=24) |
| 4474 | t = cls(1, 1, 1, tzinfo=C6()) |
| 4475 | self.assertRaises(ValueError, t.utcoffset) |
| 4476 | self.assertRaises(ValueError, t.dst) |
no outgoing calls