| 469 | catcher.append(self) |
| 470 | |
| 471 | class NotSelfDisplaying(object): |
| 472 | def __repr__(self): |
| 473 | return "NotSelfDisplaying" |
| 474 | |
| 475 | def _ipython_display_(self): |
| 476 | raise NotImplementedError |
| 477 | |
| 478 | save_enabled = f.ipython_display_formatter.enabled |
| 479 | f.ipython_display_formatter.enabled = True |
no outgoing calls
searching dependent graphs…