diff options
author | Matti Picus <matti.picus@gmail.com> | 2022-03-10 18:14:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-10 18:14:42 +0200 |
commit | 3135e1f2a3feb318295e780823d5436d1a9224f0 (patch) | |
tree | 199608e3d6f0c683003ad82384f5507a3d8dc48b /numpy/core/numeric.py | |
parent | fa0881fe14ab735c4ac1822767cc2f024f650130 (diff) | |
parent | 586d675040977574c81bfadd9b1304e056a040c5 (diff) | |
download | numpy-3135e1f2a3feb318295e780823d5436d1a9224f0.tar.gz |
Merge pull request #21145 from tirthasheshpatel/fix-gh20743
MAINT, DOC: make np._from_dlpack public
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 5f6602c71..39bfc2d55 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', |