PyImport_GetModuleId method

Pointer<PyObject> PyImport_GetModuleId(
  1. Pointer<_Py_Identifier> name
)

Implementation

ffi.Pointer<PyObject> PyImport_GetModuleId(
  ffi.Pointer<_Py_Identifier> name,
) {
  return _PyImport_GetModuleId(
    name,
  );
}