(self)
| 790 | ) |
| 791 | |
| 792 | def test_assign_multi(self) -> None: |
| 793 | t = RArray(object_rprimitive, 2) |
| 794 | a = Register(t, "a") |
| 795 | self.registers.append(a) |
| 796 | self.assert_emit( |
| 797 | AssignMulti(a, [self.o, self.o2]), """PyObject *cpy_r_a[2] = {cpy_r_o, cpy_r_o2};""" |
| 798 | ) |
| 799 | |
| 800 | def test_long_unsigned(self) -> None: |
| 801 | a = Register(int64_rprimitive, "a") |
nothing calls this directly
no test coverage detected