PyImport_ExecCodeModuleObject method

Pointer<PyObject> PyImport_ExecCodeModuleObject(
  1. Pointer<PyObject> name,
  2. Pointer<PyObject> co,
  3. Pointer<PyObject> pathname,
  4. Pointer<PyObject> cpathname,
)

Implementation

ffi.Pointer<PyObject> PyImport_ExecCodeModuleObject(
  ffi.Pointer<PyObject> name,
  ffi.Pointer<PyObject> co,
  ffi.Pointer<PyObject> pathname,
  ffi.Pointer<PyObject> cpathname,
) {
  return _PyImport_ExecCodeModuleObject(
    name,
    co,
    pathname,
    cpathname,
  );
}