summaryrefslogtreecommitdiff
path: root/numpy/core/multiarray.py
diff options
context:
space:
mode:
authormattip <matti.picus@gmail.com>2018-04-25 13:20:42 +0300
committermattip <matti.picus@gmail.com>2018-08-21 20:05:40 +0300
commitad1f5b5f4a468b74caf93600d6fbbf7b0ce06ad7 (patch)
tree82659cc6b640a48f64cc29896b561aa202cdd01a /numpy/core/multiarray.py
parente8aea2e23ff8ae4719f81eaff73c735a3eb240b1 (diff)
downloadnumpy-ad1f5b5f4a468b74caf93600d6fbbf7b0ce06ad7.tar.gz
MAINT: fix more name replacements, __all__ imports
Diffstat (limited to 'numpy/core/multiarray.py')
-rw-r--r--numpy/core/multiarray.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/core/multiarray.py b/numpy/core/multiarray.py
index 89759458b..77e59c70c 100644
--- a/numpy/core/multiarray.py
+++ b/numpy/core/multiarray.py
@@ -1,9 +1,9 @@
from . import _multiarray_umath
from numpy.core._multiarray_umath import *
from numpy.core._multiarray_umath import (_fastCopyAndTranspose, _flagdict, _insert,
- _reconstruct, _vec_string)
+ _reconstruct, _vec_string, _ARRAY_API)
-__all__ = ['ALLOW_THREADS', 'BUFSIZE', 'CLIP', 'DATETIMEUNITS',
+__all__ = ['_ARRAY_API', 'ALLOW_THREADS', 'BUFSIZE', 'CLIP', 'DATETIMEUNITS',
'ITEM_HASOBJECT', 'ITEM_IS_POINTER', 'LIST_PICKLE', 'MAXDIMS',
'MAY_SHARE_BOUNDS', 'MAY_SHARE_EXACT', 'NEEDS_INIT', 'NEEDS_PYAPI',
'RAISE', 'USE_GETITEM', 'USE_SETITEM', 'WRAP',