(self)
| 2367 | self.do_disassembly_compare(actual, dis_f) |
| 2368 | |
| 2369 | def test_from_traceback(self): |
| 2370 | tb = get_tb() |
| 2371 | b = dis.Bytecode.from_traceback(tb) |
| 2372 | while tb.tb_next: tb = tb.tb_next |
| 2373 | |
| 2374 | self.assertEqual(b.current_offset, tb.tb_lasti) |
| 2375 | |
| 2376 | def test_from_traceback_dis(self): |
| 2377 | self.maxDiff = None |
nothing calls this directly
no test coverage detected