(self)
| 395 | catcher = [] |
| 396 | class SelfDisplaying(object): |
| 397 | def _ipython_display_(self): |
| 398 | catcher.append(self) |
| 399 | |
| 400 | class NotSelfDisplaying(object): |
| 401 | def __repr__(self): |
nothing calls this directly
no outgoing calls
no test coverage detected