PyImport_ExecCodeModuleWithPathnames method Null safety
Implementation
ffi.Pointer<PyObject> PyImport_ExecCodeModuleWithPathnames(
ffi.Pointer<ffi.Int8> name,
ffi.Pointer<PyObject> co,
ffi.Pointer<ffi.Int8> pathname,
ffi.Pointer<ffi.Int8> cpathname,
) {
return _PyImport_ExecCodeModuleWithPathnames(
name,
co,
pathname,
cpathname,
);
}