(op: *mut PyObject)
| 34 | |
| 35 | #[inline(always)] |
| 36 | pub unsafe fn PyCell_GET(op: *mut PyObject) -> *mut PyObject { |
| 37 | (*(op as *mut PyCellObject)).ob_ref |
| 38 | } |
| 39 | |
| 40 | #[inline(always)] |
| 41 | pub unsafe fn PyCell_SET(op: *mut PyObject, obj: *mut PyObject) { |
nothing calls this directly
no outgoing calls
no test coverage detected