(op: *mut PyObject)
| 21 | |
| 22 | #[inline(always)] |
| 23 | pub unsafe fn PyMemoryView_GET_BASE(op: *mut PyObject) -> *mut PyObject { |
| 24 | (*(op as *mut PyMemoryViewObject)).view.obj |
| 25 | } |
| 26 | |
| 27 | #[cfg_attr(windows, link(name = "pythonXY"))] |
| 28 | extern "C" { |
nothing calls this directly
no outgoing calls
no test coverage detected