diff options
author | mattip <matti.picus@gmail.com> | 2021-11-02 11:30:32 +0200 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2021-11-02 11:36:07 +0200 |
commit | ba8fcbe2ba0a26cd52dfa9bf40dd2e945e5b298f (patch) | |
tree | 629d314c374aaf1c91821213605df6190c7a3382 /numpy/core/numeric.py | |
parent | ef04f59d1a5cc7320866c48d75059aa52d390003 (diff) | |
download | numpy-ba8fcbe2ba0a26cd52dfa9bf40dd2e945e5b298f.tar.gz |
change from_dlpack to _dlpack, remove unused header
Diffstat (limited to 'numpy/core/numeric.py')
-rw-r--r-- | numpy/core/numeric.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py index 987470f92..344d40d93 100644 --- a/numpy/core/numeric.py +++ b/numpy/core/numeric.py @@ -13,7 +13,7 @@ from .multiarray import ( WRAP, arange, array, asarray, asanyarray, ascontiguousarray, asfortranarray, broadcast, can_cast, compare_chararrays, concatenate, copyto, dot, dtype, empty, - empty_like, flatiter, frombuffer, from_dlpack, fromfile, fromiter, + empty_like, flatiter, frombuffer, _from_dlpack, fromfile, fromiter, fromstring, inner, lexsort, matmul, may_share_memory, min_scalar_type, ndarray, nditer, nested_iters, promote_types, putmask, result_type, set_numeric_ops, shares_memory, vdot, where, @@ -41,7 +41,7 @@ __all__ = [ 'newaxis', 'ndarray', 'flatiter', 'nditer', 'nested_iters', 'ufunc', 'arange', 'array', 'asarray', 'asanyarray', 'ascontiguousarray', 'asfortranarray', 'zeros', 'count_nonzero', 'empty', 'broadcast', 'dtype', - 'fromstring', 'fromfile', 'frombuffer', 'from_dlpack', 'where', + 'fromstring', 'fromfile', 'frombuffer', '_from_dlpack', 'where', 'argwhere', 'copyto', 'concatenate', 'fastCopyAndTranspose', 'lexsort', 'set_numeric_ops', 'can_cast', 'promote_types', 'min_scalar_type', 'result_type', 'isfortran', 'empty_like', 'zeros_like', 'ones_like', |