(self)
| 2342 | self.assertInstructionsEqual(via_object, via_generator) |
| 2343 | |
| 2344 | def test_explicit_first_line(self): |
| 2345 | actual = dis.Bytecode(outer, first_line=expected_outer_line) |
| 2346 | self.assertInstructionsEqual(list(actual), expected_opinfo_outer) |
| 2347 | |
| 2348 | def test_source_line_in_disassembly(self): |
| 2349 | # Use the line in the source code |
nothing calls this directly
no test coverage detected