(self)
| 626 | self.check_lnotab(f) |
| 627 | |
| 628 | def test_in_literal_list(self): |
| 629 | def containtest(): |
| 630 | return x in [a, b] |
| 631 | self.assertEqual(count_instr_recursively(containtest, 'BUILD_LIST'), 0) |
| 632 | self.check_lnotab(containtest) |
| 633 | |
| 634 | def test_iterate_literal_list(self): |
| 635 | def forloop(): |
nothing calls this directly
no test coverage detected