From a1c69ef6c72b9f81d2935f1616b0e7f00d419a4a Mon Sep 17 00:00:00 2001 From: Ralf Gommers Date: Thu, 18 Jan 2024 18:50:13 +0100 Subject: [PATCH] MAINT: add `newaxis` to `__all__` in `numpy.array_api` Follows up on a post-merge comment in gh-25146. [skip ci] --- numpy/array_api/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/numpy/array_api/__init__.py b/numpy/array_api/__init__.py index 77f227882e3e..edc3205fd5c4 100644 --- a/numpy/array_api/__init__.py +++ b/numpy/array_api/__init__.py @@ -127,7 +127,7 @@ from ._constants import e, inf, nan, pi, newaxis -__all__ += ["e", "inf", "nan", "pi"] +__all__ += ["e", "inf", "nan", "pi", "newaxis"] from ._creation_functions import ( asarray,