Integer Overflow

Fernando Pérez fperez528 at yahoo.com
Mon Nov 26 07:01:26 EST 2001


Ursus Horibilis wrote:

>>
>> Use longs:
>>
> 
> Okay.  My next project was to do the same thing with 64-bit
> numbers.  So how do I disable trapping for integer overflow?
> 
> (And don't tell me to use very longs ;-)

No. Python longs are not C longs, they are arbitrary length integers (think 
Mathematica/Maple/etc). They're therefore dog slow, but never overflow. Very 
handy when you really need them.

Cheers,

f



More information about the Python-list mailing list