Numeric 24.2 indexing problems with Python 2.5 and 64-bit platforms

Francesc Altet faltet at carabos.com
Fri Nov 3 10:21:34 EST 2006


Hi,

This is just to inform you that I've detected also problems with
indexation code in Numeric (24.2) with Python 2.5 and 64-bit
platforms. The next reproduces the issue:

>>> a=Numeric.array([1,0])
>>> a
array([1, 0])
>>> a[:]
zeros((0,), 'l')  # ??
# The order of values in the array doesn't seem to affect
>>> a=Numeric.array([0,1])
>>> a
array([0, 1])
>>> a[:]
zeros((0,), 'l')  # ?


I know that support for Numeric has officially ceased. This is just to
let others know that using latest Numeric with Python 2.5 and 64-bit
platforms (or, at very least, Linux64 on top of AMD64 :P) can lend to
pretty scaring results.

Cheers,

-- 
>0,0<   Francesc Altet     http://www.carabos.com/
V   V   Cárabos Coop. V.   Enjoy Data
 "-"


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642




More information about the NumPy-Discussion mailing list