(self)
| 304 | self.assert_emit(IncRef(self.o), "CPy_INCREF(cpy_r_o);", rare=True) |
| 305 | |
| 306 | def test_dec_ref(self) -> None: |
| 307 | self.assert_emit(DecRef(self.o), "CPy_DECREF(cpy_r_o);") |
| 308 | self.assert_emit(DecRef(self.o), "CPy_DecRef(cpy_r_o);", rare=True) |
| 309 | |
| 310 | def test_inc_ref_int(self) -> None: |
| 311 | self.assert_emit(IncRef(self.m), "CPyTagged_INCREF(cpy_r_m);") |
nothing calls this directly
no test coverage detected