(self)
| 1999 | str(instr) |
| 2000 | |
| 2001 | def test_default_first_line(self): |
| 2002 | actual = dis.get_instructions(simple) |
| 2003 | self.assertInstructionsEqual(list(actual), expected_opinfo_simple) |
| 2004 | |
| 2005 | def test_first_line_set_to_None(self): |
| 2006 | actual = dis.get_instructions(simple, first_line=None) |
nothing calls this directly
no test coverage detected