quick question -- either this is a desired effect that ndarray.base is no longer chains to point to all parent arrays? following code produces different outputs with 1.6.3 and 1.7.0b1:
$> python -c 'import numpy as np; print np.__version__; a=np.arange(10); print a[:4].base is a, a[:4][:3].base is a, a[:4][:3].base.base is a' 1.6.2 True False True 1.7.0rc1.dev-ea23de8 True True False On Wed, 05 Sep 2012, Yaroslav Halchenko wrote: > pymvpa2_2.1.0-1.dsc ok FAILED > http://www.onerussian.com/Linux/deb/logs/python-numpy_1.7.0~b1-1_amd64.testrdepends.debian-sid/pymvpa2_2.1.0-1_amd64.build -- Yaroslav O. Halchenko Postdoctoral Fellow, Department of Psychological and Brain Sciences Dartmouth College, 419 Moore Hall, Hinman Box 6207, Hanover, NH 03755 Phone: +1 (603) 646-9834 Fax: +1 (603) 646-1419 WWW: http://www.linkedin.com/in/yarik _______________________________________________ NumPy-Discussion mailing list [email protected] http://mail.scipy.org/mailman/listinfo/numpy-discussion
