(self)
| 67 | return info |
| 68 | |
| 69 | def __repr__(self): |
| 70 | if self._repr is not None: |
| 71 | return self._repr |
| 72 | info = self._repr_info() |
| 73 | return '<{}>'.format(' '.join(info)) |
| 74 | |
| 75 | def get_context(self): |
| 76 | return self._context |
nothing calls this directly
no test coverage detected