(self)
| 2023 | self.assertInstructionsEqual(list(actual), expected_opinfo_simple) |
| 2024 | |
| 2025 | def test_outer(self): |
| 2026 | actual = dis.get_instructions(outer, first_line=expected_outer_line) |
| 2027 | self.assertInstructionsEqual(list(actual), expected_opinfo_outer) |
| 2028 | |
| 2029 | def test_nested(self): |
| 2030 | with captured_stdout(): |
nothing calls this directly
no test coverage detected