(self)
| 30 | ', '.join(repr(getattr(self, name)) for name in self._fields)) |
| 31 | |
| 32 | def __iter__(self): |
| 33 | for name in self._fields: |
| 34 | yield getattr(self, name) |
| 35 | |
| 36 | def __eq__(self, other): |
| 37 | return isinstance(other, type(self)) and tuple(self) == tuple(other) |
nothing calls this directly
no outgoing calls
no test coverage detected