(self)
| 60 | return info |
| 61 | |
| 62 | def __repr__(self): |
| 63 | if self._repr is not None: |
| 64 | return self._repr |
| 65 | info = self._repr_info() |
| 66 | return '<{}>'.format(' '.join(info)) |
| 67 | |
| 68 | def cancel(self): |
| 69 | if not self._cancelled: |
nothing calls this directly
no test coverage detected