py_eq method

bool py_eq(
  1. py_Ref lhs,
  2. py_Ref rhs
)

lhs == rhs

Implementation

bool py_eq(
  py_Ref lhs,
  py_Ref rhs,
) {
  return _py_eq(
    lhs,
    rhs,
  );
}