PyImport_ExecCodeModuleEx method

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

Implementation

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