(op: *mut PyObject, i: Py_ssize_t, v: *mut PyObject)
| 47 | /// Macro, *only* to be used to fill in brand new lists |
| 48 | #[inline(always)] |
| 49 | pub unsafe fn PyList_SET_ITEM(op: *mut PyObject, i: Py_ssize_t, v: *mut PyObject) { |
| 50 | *(*(op as *mut PyListObject)).ob_item.offset(i as isize) = v; |
| 51 | } |
| 52 | |
| 53 | #[cfg_attr(windows, link(name = "pythonXY"))] |
| 54 | extern "C" { |
nothing calls this directly
no outgoing calls
no test coverage detected