| 398 | catcher.append(self) |
| 399 | |
| 400 | class NotSelfDisplaying(object): |
| 401 | def __repr__(self): |
| 402 | return "NotSelfDisplaying" |
| 403 | |
| 404 | def _ipython_display_(self): |
| 405 | raise NotImplementedError |
| 406 | |
| 407 | save_enabled = f.ipython_display_formatter.enabled |
| 408 | f.ipython_display_formatter.enabled = True |
no outgoing calls