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,
int op,
int rop,
) {
return _py_binaryop(
lhs,
rhs,
op,
rop,
);
}