(self)
| 2357 | |
| 2358 | @unittest.expectedFailure # TODO: RUSTPYTHON |
| 2359 | def test_disassembled(self): |
| 2360 | actual = dis.Bytecode(_f).dis() |
| 2361 | self.do_disassembly_compare(actual, dis_f) |
| 2362 | |
| 2363 | def test_from_traceback(self): |
| 2364 | tb = get_tb() |
nothing calls this directly
no test coverage detected