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)
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],
>>> from numpy import log2, __version__
>>>
log2(2**63)
Traceback (most recent call
last):