Hi! With numpy 1.5, I get this:
>>> a = np.ones((2, 2)) >>> (2 * a.T).strides (16, 8) With 1.6, I get this: >>> (2 * a.T).strides (8, 16) So, this means I can't count on new arrays being C-contiguous any more. I guess there is a good reason for this. Anyway, I just thought I would mention it here - maybe I'm not the only one making this assumption when passing ndarrays to C code. Jens Jørgen _______________________________________________ NumPy-Discussion mailing list [email protected] http://mail.scipy.org/mailman/listinfo/numpy-discussion
