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