Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 367 Bytes

22313.deprecation.rst

File metadata and controls

10 lines (7 loc) · 367 Bytes

Deprecate fastCopyAndTranspose and PyArray_CopyAndTranspose

The numpy.fastCopyAndTranspose function has been deprecated. Use the corresponding copy and transpose methods directly:

arr.T.copy()

The underlying C function PyArray_CopyAndTranspose has also been deprecated from the NumPy C-API.