(self, *a, **kw)
| 58 | super().__setitem__(key, value) |
| 59 | |
| 60 | def update(self, *a, **kw): |
| 61 | super().update(*a, **kw) |
| 62 | |
| 63 | def __eq__(self, other): |
| 64 | return frozenset(other.items()) == frozenset(self.items()) |
no outgoing calls
no test coverage detected