Re: [Numpy-discussion] numpy log2 has bug

2011-03-23 Thread Robert Kern
On Wed, Mar 23, 2011 at 13:51, wrote: > 2011/3/23 Dmitrey : > from numpy import log2, __version__ > > log2(2**63) >> Traceback (most recent call >> last): >>   File "", line 1, in >> >> AttributeError: log2 > __version__ >> '2.0.0.dev-1fe8136' >> (doesn't work with 1.3.0 as well)

Re: [Numpy-discussion] numpy log2 has bug

2011-03-23 Thread josef . pktd
2011/3/23 Dmitrey : from numpy import log2, __version__ log2(2**63) > Traceback (most recent call > last): >   File "", line 1, in > > AttributeError: log2 __version__ > '2.0.0.dev-1fe8136' > (doesn't work with 1.3.0 as well) >>> np.array([2**63]) array([9223372036854775808],

[Numpy-discussion] numpy log2 has bug

2011-03-23 Thread Dmitrey
>>> from numpy import log2, __version__ >>> log2(2**63) Traceback (most recent call last):