(self)
| 5626 | |
| 5627 | @support.run_with_tz('UTC') |
| 5628 | def test_astimezone_default_utc(self): |
| 5629 | dt = self.theclass.now(timezone.utc) |
| 5630 | self.assertEqual(dt.astimezone(None), dt) |
| 5631 | self.assertEqual(dt.astimezone(), dt) |
| 5632 | |
| 5633 | # Note that offset in TZ variable has the opposite sign to that |
| 5634 | # produced by %z directive. |
nothing calls this directly
no test coverage detected