On 9/1/2013 9:54 AM, Charles R Harris wrote: > Hi all, > > I'm happy to announce the first beta release of Numpy 1.8.0. Please try > this beta and report any issues on the numpy-dev mailing list. > > Source tarballs and release notes can be found at > https://sourceforge.net/projects/numpy/files/NumPy/1.8.0b1/. The Windows > and OS X installers will follow when the infrastructure issues are dealt > with. > > Chuck >
Hello, is this IndexError intentional in numpy 1.8? Matplotlib 1.3 fails some tests because of this. >>> numpy.zeros(1)[[0], :] Traceback (most recent call last): File "<stdin>", line 1, in <module> IndexError: too many indices With numpy 1.7: >>> numpy.zeros(1)[[0], :] array([ 0.]) Christoph _______________________________________________ NumPy-Discussion mailing list [email protected] http://mail.scipy.org/mailman/listinfo/numpy-discussion
