diff options
Diffstat (limited to 'numpy/lib/__init__.py')
-rw-r--r-- | numpy/lib/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/lib/__init__.py b/numpy/lib/__init__.py index 34a39e63b..519e2b803 100644 --- a/numpy/lib/__init__.py +++ b/numpy/lib/__init__.py @@ -15,6 +15,7 @@ from machar import * from getlimits import * #import convertcode from utils import * +from arraysetops import * __all__ = [] __all__ += type_check.__all__ @@ -27,6 +28,7 @@ __all__ += polynomial.__all__ __all__ += machar.__all__ __all__ += getlimits.__all__ __all__ += utils.__all__ +__all__ += arraysetops.__all__ from numpy.testing import ScipyTest test = ScipyTest().test |