(self)
| 13 | raise AttributeError('No attribute %s' % name) |
| 14 | |
| 15 | def __repr__(self): |
| 16 | return '%s(%s)' % (type(self).__name__, |
| 17 | ', '.join(repr(getattr(self, name)) for name in self._fields)) |
| 18 | |
| 19 | @classmethod |
| 20 | def from_row(cls, row): |
nothing calls this directly
no outgoing calls
no test coverage detected