(self)
| 932 | ) |
| 933 | |
| 934 | def test_inc_ref_none(self) -> None: |
| 935 | b = Box(self.none) |
| 936 | self.assert_emit([b, IncRef(b)], "" if HAVE_IMMORTAL else "CPy_INCREF(cpy_r_r0);") |
| 937 | |
| 938 | def test_inc_ref_bool(self) -> None: |
| 939 | b = Box(self.b) |
nothing calls this directly
no test coverage detected