(meth: *mut PyObject)
| 108 | |
| 109 | #[inline(always)] |
| 110 | pub unsafe fn PyMethod_GET_SELF(meth: *mut PyObject) -> *mut PyObject { |
| 111 | (*(meth as *mut PyMethodObject)).im_self |
| 112 | } |
| 113 | |
| 114 | #[inline(always)] |
| 115 | pub unsafe fn PyMethod_GET_CLASS(meth: *mut PyObject) -> *mut PyObject { |
nothing calls this directly
no outgoing calls
no test coverage detected