(self, include=None, exclude=None)
| 525 | def test_repr_mime_failure(): |
| 526 | class BadReprMime(object): |
| 527 | def _repr_mimebundle_(self, include=None, exclude=None): |
| 528 | raise RuntimeError |
| 529 | |
| 530 | f = get_ipython().display_formatter |
| 531 | obj = BadReprMime() |
nothing calls this directly
no outgoing calls
no test coverage detected