diff options
| author | Ralf Gommers <ralf.gommers@gmail.com> | 2021-11-12 16:15:35 +0100 |
|---|---|---|
| committer | Ralf Gommers <ralf.gommers@gmail.com> | 2021-11-12 16:15:35 +0100 |
| commit | eccb8dfbd9b07183e16a1144e8d5d76936671bfc (patch) | |
| tree | 647a9477b4f3b8b7205f2f7f2feb99eaa482e806 /numpy/array_api/__init__.py | |
| parent | d0d75f39f28ac26d4cc1aa3a4cbea63a6a027929 (diff) | |
| parent | ff2e2a1e7eea29d925063b13922e096d14331222 (diff) | |
| download | numpy-eccb8dfbd9b07183e16a1144e8d5d76936671bfc.tar.gz | |
Merge branch 'main' into never_copy
Diffstat (limited to 'numpy/array_api/__init__.py')
| -rw-r--r-- | numpy/array_api/__init__.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/numpy/array_api/__init__.py b/numpy/array_api/__init__.py index d8b29057e..36e3f3ed5 100644 --- a/numpy/array_api/__init__.py +++ b/numpy/array_api/__init__.py @@ -169,6 +169,7 @@ __all__ += [ ] from ._data_type_functions import ( + astype, broadcast_arrays, broadcast_to, can_cast, @@ -178,6 +179,7 @@ from ._data_type_functions import ( ) __all__ += [ + "astype", "broadcast_arrays", "broadcast_to", "can_cast", @@ -358,9 +360,9 @@ from ._searching_functions import argmax, argmin, nonzero, where __all__ += ["argmax", "argmin", "nonzero", "where"] -from ._set_functions import unique +from ._set_functions import unique_all, unique_counts, unique_inverse, unique_values -__all__ += ["unique"] +__all__ += ["unique_all", "unique_counts", "unique_inverse", "unique_values"] from ._sorting_functions import argsort, sort |
