(self)
| 784 | ) |
| 785 | |
| 786 | def test_load_address(self) -> None: |
| 787 | self.assert_emit( |
| 788 | LoadAddress(object_rprimitive, "PyDict_Type"), |
| 789 | """cpy_r_r0 = (PyObject *)&PyDict_Type;""", |
| 790 | ) |
| 791 | |
| 792 | def test_assign_multi(self) -> None: |
| 793 | t = RArray(object_rprimitive, 2) |
nothing calls this directly
no test coverage detected