(self)
| 20 | raise AttributeError('No attribute %s' % name) |
| 21 | |
| 22 | def __repr__(self): |
| 23 | return '%s(%s)' % (type(self).__name__, |
| 24 | ', '.join(repr(getattr(self, name)) for name in self._fields)) |
| 25 | |
| 26 | @classmethod |
| 27 | def set_fields(cls): |
nothing calls this directly
no outgoing calls
no test coverage detected