py_isinstance method

bool py_isinstance(
  1. py_Ref obj,
  2. int type
)

Check if the object is an instance of the given type.

Implementation

bool py_isinstance(
  py_Ref obj,
  int type,
) {
  return _py_isinstance(
    obj,
    type,
  );
}