(op: *mut PyObject)
| 16 | |
| 17 | #[inline(always)] |
| 18 | pub unsafe fn PyMemoryView_GET_BUFFER(op: *mut PyObject) -> *mut Py_buffer { |
| 19 | &mut (*(op as *mut PyMemoryViewObject)).view |
| 20 | } |
| 21 | |
| 22 | #[inline(always)] |
| 23 | pub unsafe fn PyMemoryView_GET_BASE(op: *mut PyObject) -> *mut PyObject { |
nothing calls this directly
no outgoing calls
no test coverage detected