PyImport_AddModuleObject method

Pointer<PyObject> PyImport_AddModuleObject(
  1. Pointer<PyObject> name,
  2. Pointer<PyObject> modules
)

Implementation

ffi.Pointer<PyObject> PyImport_AddModuleObject(
  ffi.Pointer<PyObject> name,
  ffi.Pointer<PyObject> modules,
) {
  return _PyImport_AddModuleObject(
    name,
    modules,
  );
}