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/core/numeric.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/core/numeric.py')
-rw-r--r-- | numpy/core/numeric.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py index 092e42470..5b92972d1 100644 --- a/numpy/core/numeric.py +++ b/numpy/core/numeric.py @@ -8,7 +8,7 @@ import numbers import numpy as np from . import multiarray from .multiarray import ( - _fastCopyAndTranspose as fastCopyAndTranspose, ALLOW_THREADS, + fastCopyAndTranspose, ALLOW_THREADS, BUFSIZE, CLIP, MAXDIMS, MAY_SHARE_BOUNDS, MAY_SHARE_EXACT, RAISE, WRAP, arange, array, asarray, asanyarray, ascontiguousarray, asfortranarray, broadcast, can_cast, compare_chararrays, |