(self)
| 2039 | self.assertInstructionsEqual(list(actual), expected_opinfo_inner) |
| 2040 | |
| 2041 | def test_jumpy(self): |
| 2042 | actual = dis.get_instructions(jumpy, first_line=expected_jumpy_line) |
| 2043 | self.assertInstructionsEqual(list(actual), expected_opinfo_jumpy) |
| 2044 | |
| 2045 | @requires_debug_ranges() |
| 2046 | def test_co_positions(self): |
nothing calls this directly
no test coverage detected