(self)
| 1166 | self.do_disassembly_test("(*a,)", dis_intrinsic_1_6) |
| 1167 | |
| 1168 | def test_intrinsic_2(self): |
| 1169 | self.assertIn("CALL_INTRINSIC_2 1 (INTRINSIC_PREP_RERAISE_STAR)", |
| 1170 | self.get_disassembly("try: pass\nexcept* Exception: x")) |
| 1171 | |
| 1172 | def test_big_linenos(self): |
| 1173 | def func(count): |
nothing calls this directly
no test coverage detected