(self)
| 637 | |
| 638 | @unittest.expectedFailure # TODO: RUSTPYTHON; no BUILD_LIST to BUILD_TUPLE optimization |
| 639 | def test_in_literal_list(self): |
| 640 | def containtest(): |
| 641 | return x in [a, b] |
| 642 | self.assertEqual(count_instr_recursively(containtest, 'BUILD_LIST'), 0) |
| 643 | self.check_lnotab(containtest) |
| 644 | |
| 645 | def test_iterate_literal_list(self): |
| 646 | def forloop(): |
nothing calls this directly
no test coverage detected