diff options
author | Ross Barnowski <rossbar@berkeley.edu> | 2022-09-19 13:50:48 -0700 |
---|---|---|
committer | Ross Barnowski <rossbar@berkeley.edu> | 2022-10-06 11:14:49 -0700 |
commit | a2cc1c39307c70c073038d79e17346e962720024 (patch) | |
tree | 39fed111823254dae3c27b5b76acec9fb5bafca4 /numpy/tests/test_public_api.py | |
parent | 65eb581a3bd4b5e0ee390606e20dc4b6f8597b34 (diff) | |
download | numpy-a2cc1c39307c70c073038d79e17346e962720024.tar.gz |
DEP: fastCopyAndTranspose and PyArray_CopyAndTranspose
Deprecate the fastCopyAndTranspose function from the Python API, and the
underlying PyArray_CopyAndTranspose function from the C-API.
Also removes an internal, private function _fastCopyAndTranspose which
was the original Python wrapper around the C-function.
Diffstat (limited to 'numpy/tests/test_public_api.py')
-rw-r--r-- | numpy/tests/test_public_api.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/tests/test_public_api.py b/numpy/tests/test_public_api.py index 882a48d2f..92a34bf91 100644 --- a/numpy/tests/test_public_api.py +++ b/numpy/tests/test_public_api.py @@ -43,7 +43,7 @@ def test_numpy_namespace(): 'deprecate': 'numpy.lib.utils.deprecate', 'deprecate_with_doc': 'numpy.lib.utils.deprecate_with_doc', 'disp': 'numpy.lib.function_base.disp', - 'fastCopyAndTranspose': 'numpy.core._multiarray_umath._fastCopyAndTranspose', + 'fastCopyAndTranspose': 'numpy.core._multiarray_umath.fastCopyAndTranspose', 'get_array_wrap': 'numpy.lib.shape_base.get_array_wrap', 'get_include': 'numpy.lib.utils.get_include', 'recfromcsv': 'numpy.lib.npyio.recfromcsv', |