Closed
Description
In current tree:
>>> a = np.ones((10, 10)) >>> np.copy(a.T).flags C_CONTIGUOUS : True F_CONTIGUOUS : False OWNDATA : True WRITEABLE : True ALIGNED : True UPDATEIFCOPY : False
In numpy 1.6
>>> a = np.ones((10, 10)) >>> np.copy(a.T).flags C_CONTIGUOUS : False F_CONTIGUOUS : True OWNDATA : True WRITEABLE : True ALIGNED : True UPDATEIFCOPY : False
I suggest to put "order='K'" by default in numpy 1.7 (maybe with a FutureWarning) to ensure backward compat.
Metadata
Metadata
Assignees
Labels
No labels