(self)
| 2357 | self.assertEqual(actual, "350") |
| 2358 | |
| 2359 | def test_info(self): |
| 2360 | self.maxDiff = 1000 |
| 2361 | for x, expected in CodeInfoTests.test_pairs: |
| 2362 | b = dis.Bytecode(x) |
| 2363 | self.assertRegex(b.info(), expected) |
| 2364 | |
| 2365 | def test_disassembled(self): |
| 2366 | actual = dis.Bytecode(_f).dis() |
nothing calls this directly
no test coverage detected