| 3289 | self.assertEqual(dt.replace(tzinfo=bog).astimezone(f), dt_f) |
| 3290 | |
| 3291 | class AlsoBogus(tzinfo): |
| 3292 | def utcoffset(self, dt): return timedelta(0) |
| 3293 | def dst(self, dt): return None |
| 3294 | alsobog = AlsoBogus() |
| 3295 | self.assertRaises(ValueError, dt.astimezone, alsobog) # also naive |
| 3296 |
no outgoing calls
searching dependent graphs…