Forwards to appropriate Python binary operator overload.
Note the result of / in python 3 (and python 2, if CO_FUTURE_DIVISION is set) is interpreted as "true division", otherwise it is integer division for integer arguments.
<a href="http://www.python.org/dev/peps/pep-0238/"> PEP 238 </a>
See Implementation
Forwards to appropriate Python binary operator overload.
Note the result of / in python 3 (and python 2, if CO_FUTURE_DIVISION is set) is interpreted as "true division", otherwise it is integer division for integer arguments.