(self, tb)
| 2469 | return super().setUp() |
| 2470 | |
| 2471 | def get_disassembly(self, tb): |
| 2472 | output = io.StringIO() |
| 2473 | with contextlib.redirect_stdout(output): |
| 2474 | dis.distb(tb) |
| 2475 | return output.getvalue() |
| 2476 | |
| 2477 | def test_distb_empty(self): |
| 2478 | with self.assertRaises(RuntimeError): |
no test coverage detected