Hi all,<br><br>The following code calling numpy v1.0.4 fails to terminate on my machine, which was not the case with v1.0.3.1<br><br>    from numpy import arange, float64<br>    from numpy.linalg import eig<br>    a = arange(13*13, dtype = float64)
<br>    a.shape = (13,13)<br>    a = a%17<br>    eig(a)<br><br><br>Regards,<br>Peter<br>