(self)
| 300 | ) |
| 301 | |
| 302 | def test_inc_ref(self) -> None: |
| 303 | self.assert_emit(IncRef(self.o), "CPy_INCREF(cpy_r_o);") |
| 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);") |
nothing calls this directly
no test coverage detected