[Numpy-discussion] Segfault when indexing on second or higher dimension with list or tuple

Albert Strasheim fullung at gmail.com
Thu Apr 13 05:18:04 EDT 2006


Hello all,

The following segfault bug was discovered in NumPy 0.9.7.2348 by 
someone at our Python workshop:

import numpy as N
F = N.zeros((1,1))
F[:,[0]] = 0

The following also segfaults:

F[:,(0,)] = 0

Something seems to go wrong when one uses a tuple or a list to index 
into a NumPy array on the second or higher dimension, since the 
following code works:

F = N.zeros((1,))
F[[0]] = 0

The Trac ticket is here:

http://projects.scipy.org/scipy/numpy/ticket/59

If someone gets around to fixing this, please include some test cases.

Thanks!

Regards,

Albert




More information about the NumPy-Discussion mailing list