| 19 | #[repr(C)] |
| 20 | #[derive(Copy, Clone)] |
| 21 | pub struct PyImport_Struct_frozen { |
| 22 | pub name: *mut c_char, |
| 23 | pub code: *mut c_uchar, |
| 24 | pub size: c_int, |
| 25 | } |
| 26 | |
| 27 | #[inline] |
| 28 | pub unsafe fn PyImport_ImportModuleEx( |
nothing calls this directly
no outgoing calls
no test coverage detected