(self, *args, **kwds)
| 486 | # Verify that subclasses can override update() without breaking __init__() |
| 487 | class MyOD(OrderedDict): |
| 488 | def update(self, *args, **kwds): |
| 489 | raise Exception() |
| 490 | items = [('a', 1), ('c', 3), ('b', 2)] |
| 491 | self.assertEqual(list(MyOD(items).items()), items) |
| 492 |
no outgoing calls
no test coverage detected