(self)
| 367 | self.assert_emit(Box(self.i64), """cpy_r_r0 = PyLong_FromLongLong(cpy_r_i64);""") |
| 368 | |
| 369 | def test_unbox_i64(self) -> None: |
| 370 | self.assert_emit( |
| 371 | Unbox(self.o, int64_rprimitive, 55), """cpy_r_r0 = CPyLong_AsInt64(cpy_r_o);""" |
| 372 | ) |
| 373 | |
| 374 | def test_box_vec(self) -> None: |
| 375 | self.assert_emit(Box(self.vi64), """cpy_r_r0 = VecI64Api.box(cpy_r_vi64);""") |
nothing calls this directly
no test coverage detected