py_getattr method

bool py_getattr(
  1. py_Ref self,
  2. int name
)

Python equivalent to getattr(self, name).

Implementation

bool py_getattr(
  py_Ref self,
  int name,
) {
  return _py_getattr(
    self,
    name,
  );
}