From d04926d072cb6e0975aef16ba029ac162b83854d Mon Sep 17 00:00:00 2001 From: Stuart Archibald Date: Tue, 4 Feb 2020 13:17:21 +0000 Subject: [PATCH] Move numba.numpy_extensions to numba.np.extensions --- docs/source/reference/numpysupported.rst | 2 +- numba/{numpy_extensions.py => np/extensions.py} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename numba/{numpy_extensions.py => np/extensions.py} (100%) diff --git a/docs/source/reference/numpysupported.rst b/docs/source/reference/numpysupported.rst index 4e90f58fd14..520aa6cf60b 100644 --- a/docs/source/reference/numpysupported.rst +++ b/docs/source/reference/numpysupported.rst @@ -339,7 +339,7 @@ The following top-level functions are supported: arrays should have ``shape[-1] == 3``) * If ``shape[-1] == 2`` for both inputs, please replace your - :func:`numpy.cross` call with :func:`numba.numpy_extensions.cross2d`. + :func:`numpy.cross` call with :func:`numba.np.extensions.cross2d`. * :func:`numpy.delete` (only the 2 first arguments) * :func:`numpy.diag` diff --git a/numba/numpy_extensions.py b/numba/np/extensions.py similarity index 100% rename from numba/numpy_extensions.py rename to numba/np/extensions.py