(self)
| 2015 | str(instr) |
| 2016 | |
| 2017 | def test_default_first_line(self): |
| 2018 | actual = dis.get_instructions(simple) |
| 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) |
nothing calls this directly
no test coverage detected