(self)
| 2019 | self.assertInstructionsEqual(list(actual), expected_opinfo_simple) |
| 2020 | |
| 2021 | def test_first_line_set_to_None(self): |
| 2022 | actual = dis.get_instructions(simple, first_line=None) |
| 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) |
nothing calls this directly
no test coverage detected