(self, other)
| 32 | yield getattr(self, name) |
| 33 | |
| 34 | def __eq__(self, other): |
| 35 | return isinstance(other, type(self)) and tuple(self) == tuple(other) |
| 36 | |
| 37 | @classmethod |
| 38 | def from_row(cls, row): |
nothing calls this directly
no outgoing calls
no test coverage detected