py_less method

int py_less(
  1. py_Ref lhs,
  2. py_Ref rhs
)

Compare two objects. 1: lhs < rhs, 0: lhs >= rhs, -1: error

Implementation

int py_less(
  py_Ref lhs,
  py_Ref rhs,
) {
  return _py_less(
    lhs,
    rhs,
  );
}