PyImport_ExecCodeModuleEx method Null safety

Pointer<PyObject> PyImport_ExecCodeModuleEx (
  1. Pointer<Int8> name,
  2. Pointer<PyObject> co,
  3. Pointer<Int8> pathname
)

Implementation

ffi.Pointer<PyObject> PyImport_ExecCodeModuleEx(
  ffi.Pointer<ffi.Int8> name,
  ffi.Pointer<PyObject> co,
  ffi.Pointer<ffi.Int8> pathname,
) {
  return _PyImport_ExecCodeModuleEx(
    name,
    co,
    pathname,
  );
}