(meth: *mut PyObject)
| 103 | |
| 104 | #[inline(always)] |
| 105 | pub unsafe fn PyMethod_GET_FUNCTION(meth: *mut PyObject) -> *mut PyObject { |
| 106 | (*(meth as *mut PyMethodObject)).im_func |
| 107 | } |
| 108 | |
| 109 | #[inline(always)] |
| 110 | pub unsafe fn PyMethod_GET_SELF(meth: *mut PyObject) -> *mut PyObject { |
nothing calls this directly
no outgoing calls
no test coverage detected