summaryrefslogtreecommitdiff
path: root/numpy/lib/mixins.py
diff options
context:
space:
mode:
authorRalf Gommers <ralf.gommers@gmail.com>2019-09-08 11:23:10 -0700
committerRalf Gommers <ralf.gommers@gmail.com>2019-09-19 08:57:52 +0200
commit9996fb316d7386a0ea3b5f85e71283b3ba9abe55 (patch)
treedc72eb2ac6d474e2f55135fe4f1cdb25b1d59c36 /numpy/lib/mixins.py
parent53f130751ac488b879adcb9e6bb2e2bc76a4ac93 (diff)
downloadnumpy-9996fb316d7386a0ea3b5f85e71283b3ba9abe55.tar.gz
MAINT: fix issue with `np.lib.mixins.__all__` and import of mixins
Diffstat (limited to 'numpy/lib/mixins.py')
-rw-r--r--numpy/lib/mixins.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/lib/mixins.py b/numpy/lib/mixins.py
index 52ad45b68..f974a7724 100644
--- a/numpy/lib/mixins.py
+++ b/numpy/lib/mixins.py
@@ -5,8 +5,8 @@ import sys
from numpy.core import umath as um
-# Nothing should be exposed in the top-level NumPy module.
-__all__ = []
+
+__all__ = ['NDArrayOperatorsMixin']
def _disables_array_ufunc(obj):