diff options
author | Ralf Gommers <ralf.gommers@gmail.com> | 2019-09-08 11:23:10 -0700 |
---|---|---|
committer | Ralf Gommers <ralf.gommers@gmail.com> | 2019-09-19 08:57:52 +0200 |
commit | 9996fb316d7386a0ea3b5f85e71283b3ba9abe55 (patch) | |
tree | dc72eb2ac6d474e2f55135fe4f1cdb25b1d59c36 /numpy/lib/mixins.py | |
parent | 53f130751ac488b879adcb9e6bb2e2bc76a4ac93 (diff) | |
download | numpy-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.py | 4 |
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): |