PyImport_AddModuleObject1 method

Pointer<PyObject> PyImport_AddModuleObject1(
  1. Pointer<PyObject> name
)

Implementation

ffi.Pointer<PyObject> PyImport_AddModuleObject1(
  ffi.Pointer<PyObject> name,
) {
  return _PyImport_AddModuleObject1(
    name,
  );
}