| 4477 | |
| 4478 | # Not a whole number of seconds. |
| 4479 | class C7(tzinfo): |
| 4480 | def utcoffset(self, dt): return timedelta(microseconds=61) |
| 4481 | def dst(self, dt): return timedelta(microseconds=-81) |
| 4482 | t = cls(1, 1, 1, tzinfo=C7()) |
| 4483 | self.assertEqual(t.utcoffset(), timedelta(microseconds=61)) |
| 4484 | self.assertEqual(t.dst(), timedelta(microseconds=-81)) |
no outgoing calls