| 4276 | |
| 4277 | # Wrong types. |
| 4278 | class C4(tzinfo): |
| 4279 | def utcoffset(self, dt): return "aname" |
| 4280 | def dst(self, dt): return 7 |
| 4281 | def tzname(self, dt): return 0 |
| 4282 | t = cls(1, 1, 1, tzinfo=C4()) |
| 4283 | self.assertRaises(TypeError, t.utcoffset) |
| 4284 | self.assertRaises(TypeError, t.dst) |
no outgoing calls