py_getmodule method

py_GlobalRef py_getmodule(
  1. Pointer<Char> path
)

Get a module by path.

Implementation

py_GlobalRef py_getmodule(
  ffi.Pointer<ffi.Char> path,
) {
  return _py_getmodule(
    path,
  );
}