(
name: *const c_char,
methods: *mut PyMethodDef,
doc: *const c_char,
)
| 134 | |
| 135 | #[inline(always)] |
| 136 | pub unsafe fn Py_InitModule3( |
| 137 | name: *const c_char, |
| 138 | methods: *mut PyMethodDef, |
| 139 | doc: *const c_char, |
| 140 | ) -> *mut PyObject { |
| 141 | Py_InitModule4(name, methods, doc, ptr::null_mut(), PYTHON_API_VERSION) |
| 142 | } |
nothing calls this directly
no test coverage detected