| 3124 | self.assertEqual(dt.replace(tzinfo=bog).astimezone(f), dt_f) |
| 3125 | |
| 3126 | class AlsoBogus(tzinfo): |
| 3127 | def utcoffset(self, dt): return timedelta(0) |
| 3128 | def dst(self, dt): return None |
| 3129 | alsobog = AlsoBogus() |
| 3130 | self.assertRaises(ValueError, dt.astimezone, alsobog) # also naive |
| 3131 |
no outgoing calls