(
name: *const c_char,
globals: *mut PyObject,
locals: *mut PyObject,
fromlist: *mut PyObject,
)
| 49 | |
| 50 | #[inline] |
| 51 | pub unsafe fn PyImport_ImportModuleEx( |
| 52 | name: *const c_char, |
| 53 | globals: *mut PyObject, |
| 54 | locals: *mut PyObject, |
| 55 | fromlist: *mut PyObject, |
| 56 | ) -> *mut PyObject { |
| 57 | PyImport_ImportModuleLevel(name, globals, locals, fromlist, 0) |
| 58 | } |
| 59 | |
| 60 | #[cfg_attr(windows, link(name = "pythonXY"))] |
| 61 | extern "C" { |
nothing calls this directly
no outgoing calls
no test coverage detected