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