(self)
| 312 | self.assert_emit(IncRef(self.m), "CPyTagged_IncRef(cpy_r_m);", rare=True) |
| 313 | |
| 314 | def test_dec_ref_int(self) -> None: |
| 315 | self.assert_emit(DecRef(self.m), "CPyTagged_DECREF(cpy_r_m);") |
| 316 | self.assert_emit(DecRef(self.m), "CPyTagged_DecRef(cpy_r_m);", rare=True) |
| 317 | |
| 318 | def test_dec_ref_tuple(self) -> None: |
| 319 | self.assert_emit(DecRef(self.t), "CPyTagged_DECREF(cpy_r_t.f0);") |
nothing calls this directly
no test coverage detected