(self)
| 2350 | |
| 2351 | @unittest.expectedFailure # TODO: RUSTPYTHON |
| 2352 | def test_info(self): |
| 2353 | self.maxDiff = 1000 |
| 2354 | for x, expected in CodeInfoTests.test_pairs: |
| 2355 | b = dis.Bytecode(x) |
| 2356 | self.assertRegex(b.info(), expected) |
| 2357 | |
| 2358 | @unittest.expectedFailure # TODO: RUSTPYTHON |
| 2359 | def test_disassembled(self): |
nothing calls this directly
no test coverage detected