(self)
| 643 | self.check_lnotab(containtest) |
| 644 | |
| 645 | def test_iterate_literal_list(self): |
| 646 | def forloop(): |
| 647 | for x in [a, b]: |
| 648 | pass |
| 649 | self.assertEqual(count_instr_recursively(forloop, 'BUILD_LIST'), 0) |
| 650 | self.check_lnotab(forloop) |
| 651 | |
| 652 | def test_condition_with_binop_with_bools(self): |
| 653 | def f(): |
nothing calls this directly
no test coverage detected