(self, extra, args)
| 352 | |
| 353 | class BadReprArgs(object): |
| 354 | def _repr_html_(self, extra, args): |
| 355 | return "html" |
| 356 | |
| 357 | bad = BadReprArgs() |
| 358 | with capture_output() as captured: |
nothing calls this directly
no outgoing calls
no test coverage detected