(op: *mut PyObject, obj: *mut PyObject)
| 39 | |
| 40 | #[inline(always)] |
| 41 | pub unsafe fn PyCell_SET(op: *mut PyObject, obj: *mut PyObject) { |
| 42 | (*(op as *mut PyCellObject)).ob_ref = obj; |
| 43 | } |
nothing calls this directly
no outgoing calls
no test coverage detected