PyImport_ExecCodeModuleWithPathnames method

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

Implementation

ffi.Pointer<PyObject> PyImport_ExecCodeModuleWithPathnames(
  ffi.Pointer<ffi.Char> name,
  ffi.Pointer<PyObject> co,
  ffi.Pointer<ffi.Char> pathname,
  ffi.Pointer<ffi.Char> cpathname,
) {
  return _PyImport_ExecCodeModuleWithPathnames(
    name,
    co,
    pathname,
    cpathname,
  );
}