(
name: *mut c_char,
globals: *mut PyObject,
locals: *mut PyObject,
fromlist: *mut PyObject,
)
| 26 | |
| 27 | #[inline] |
| 28 | pub unsafe fn PyImport_ImportModuleEx( |
| 29 | name: *mut c_char, |
| 30 | globals: *mut PyObject, |
| 31 | locals: *mut PyObject, |
| 32 | fromlist: *mut PyObject, |
| 33 | ) -> *mut PyObject { |
| 34 | PyImport_ImportModuleLevel(name, globals, locals, fromlist, -1) |
| 35 | } |
| 36 | |
| 37 | #[cfg_attr(windows, link(name = "pythonXY"))] |
| 38 | extern "C" { |
nothing calls this directly
no outgoing calls
no test coverage detected