(self)
| 2033 | self.assertInstructionsEqual(list(actual), expected_opinfo_f) |
| 2034 | |
| 2035 | def test_doubly_nested(self): |
| 2036 | with captured_stdout(): |
| 2037 | inner = outer()() |
| 2038 | actual = dis.get_instructions(inner, first_line=expected_inner_line) |
| 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) |
nothing calls this directly
no test coverage detected