(self)
| 593 | self.assertEqual(count_instr_recursively(f, 'POP_JUMP_IF_TRUE'), 1) |
| 594 | |
| 595 | def test_elim_jump_to_uncond_jump4(self): |
| 596 | def f(): |
| 597 | for i in range(5): |
| 598 | if i > 3: |
| 599 | print(i) |
| 600 | self.check_jump_targets(f) |
| 601 | |
| 602 | def test_elim_jump_after_return1(self): |
| 603 | # Eliminate dead code: jumps immediately after returns can't be reached |
nothing calls this directly
no test coverage detected