(self)
| 2361 | self.do_disassembly_compare(actual, dis_f) |
| 2362 | |
| 2363 | def test_from_traceback(self): |
| 2364 | tb = get_tb() |
| 2365 | b = dis.Bytecode.from_traceback(tb) |
| 2366 | while tb.tb_next: tb = tb.tb_next |
| 2367 | |
| 2368 | self.assertEqual(b.current_offset, tb.tb_lasti) |
| 2369 | |
| 2370 | @unittest.expectedFailure # TODO: RUSTPYTHON |
| 2371 | def test_from_traceback_dis(self): |
nothing calls this directly
no test coverage detected