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