py_checkinstance method
Check if the object is an instance of the given type or its subclass.
Raise TypeError if the check fails.
Implementation
bool py_checkinstance(
py_Ref self,
int type,
) {
return _py_checkinstance(
self,
type,
);
}