(self)
| 632 | self.check_lnotab(containtest) |
| 633 | |
| 634 | def test_iterate_literal_list(self): |
| 635 | def forloop(): |
| 636 | for x in [a, b]: |
| 637 | pass |
| 638 | self.assertEqual(count_instr_recursively(forloop, 'BUILD_LIST'), 0) |
| 639 | self.check_lnotab(forloop) |
| 640 | |
| 641 | def test_condition_with_binop_with_bools(self): |
| 642 | def f(): |
nothing calls this directly
no test coverage detected