PyImport_Import method

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

Implementation

ffi.Pointer<PyObject> PyImport_Import(
  ffi.Pointer<PyObject> name,
) {
  return _PyImport_Import(
    name,
  );
}