[Numpy-discussion] TypeError when multiplying float64 and a big integer in Python 3.

2013-06-16 Thread Warren Weckesser
With Python 3.3.2 (64 bit), and numpy master: import numpy as np np.__version__ '1.8.0.dev-2a5c2c8' f = np.float64(1.0) i = 2**65 f*i Traceback (most recent call last): File stdin, line 1, in module TypeError: unsupported operand type(s) for *: 'numpy.float64' and 'int' Is this the

Re: [Numpy-discussion] TypeError when multiplying float64 and a big integer in Python 3.

2013-06-16 Thread Warren Weckesser
On Sun, Jun 16, 2013 at 12:56 PM, Warren Weckesser warren.weckes...@gmail.com wrote: With Python 3.3.2 (64 bit), and numpy master: import numpy as np np.__version__ '1.8.0.dev-2a5c2c8' f = np.float64(1.0) i = 2**65 f*i Traceback (most recent call last): File stdin, line 1, in