(ml: *mut PyMethodDef, slf: *mut PyObject)
| 84 | |
| 85 | #[inline(always)] |
| 86 | pub unsafe fn PyCFunction_New(ml: *mut PyMethodDef, slf: *mut PyObject) -> *mut PyObject { |
| 87 | PyCFunction_NewEx(ml, slf, ptr::null_mut()) |
| 88 | } |
| 89 | |
| 90 | #[cfg_attr(windows, link(name = "pythonXY"))] |
| 91 | extern "C" { |