(
obj: &PyObject,
attr_name: &Py<PyStr>,
value: PySetterValue,
vm: &VirtualMachine,
)
| 364 | |
| 365 | #[pyslot] |
| 366 | pub(crate) fn slot_setattro( |
| 367 | obj: &PyObject, |
| 368 | attr_name: &Py<PyStr>, |
| 369 | value: PySetterValue, |
| 370 | vm: &VirtualMachine, |
| 371 | ) -> PyResult<()> { |
| 372 | obj.generic_setattr(attr_name, value, vm) |
| 373 | } |
| 374 | |
| 375 | /// Return str(self). |
| 376 | #[pyslot] |
nothing calls this directly
no test coverage detected