(self)
| 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) |
| 940 | self.assert_emit([b, IncRef(b)], "" if HAVE_IMMORTAL else "CPy_INCREF(cpy_r_r0);") |
| 941 | |
| 942 | def test_inc_ref_int_literal(self) -> None: |
| 943 | for x in -5, 0, 1, 5, 255, 256: |
nothing calls this directly
no test coverage detected