(ml: *mut PyMethodDef, slf: *mut PyObject)
| 117 | |
| 118 | #[inline(always)] |
| 119 | pub unsafe fn PyCFunction_New(ml: *mut PyMethodDef, slf: *mut PyObject) -> *mut PyObject { |
| 120 | PyCFunction_NewEx(ml, slf, ptr::null_mut()) |
| 121 | } |
nothing calls this directly
no outgoing calls
no test coverage detected