py_binaryop method
Perform a binary operation.
The result will be set to py_retval().
The stack remains unchanged after the operation.
Implementation
bool py_binaryop(
py_Ref lhs,
py_Ref rhs,
py_Name op,
py_Name rop,
) {
return _py_binaryop(
lhs,
rhs,
op,
rop,
);
}