On 7/27/2013 1:48 PM, Marco wrote:
In Python 3, when we hava a division and both the result and at least
one operand are too large to convert to float, we get an exception:
>>> 2**1028 / 2**-2
int/float gets converted to float/float and the int to float conversion
is not possible. The re
In Python 3, when we hava a division and both the result and at least
one operand are too large to convert to float, we get an exception:
>>> 2**1028 / 2**-2
Traceback (most recent call last):
File "", line 1, in
OverflowError: long int too large to convert to float
When the