py_isidentical method

bool py_isidentical(
  1. py_Ref arg0,
  2. py_Ref arg1
)

Python equivalent to lhs is rhs.

Implementation

bool py_isidentical(
  py_Ref arg0,
  py_Ref arg1,
) {
  return _py_isidentical(
    arg0,
    arg1,
  );
}