(self)
| 2027 | self.assertInstructionsEqual(list(actual), expected_opinfo_outer) |
| 2028 | |
| 2029 | def test_nested(self): |
| 2030 | with captured_stdout(): |
| 2031 | f = outer() |
| 2032 | actual = dis.get_instructions(f, first_line=expected_f_line) |
| 2033 | self.assertInstructionsEqual(list(actual), expected_opinfo_f) |
| 2034 | |
| 2035 | def test_doubly_nested(self): |
| 2036 | with captured_stdout(): |
nothing calls this directly
no test coverage detected