| 3295 | self.assertRaises(ValueError, dt.astimezone, alsobog) # also naive |
| 3296 | |
| 3297 | class Broken(tzinfo): |
| 3298 | def utcoffset(self, dt): return 1 |
| 3299 | def dst(self, dt): return 1 |
| 3300 | broken = Broken() |
| 3301 | dt_broken = dt.replace(tzinfo=broken) |
| 3302 | with self.assertRaises(TypeError): |
no outgoing calls
searching dependent graphs…