diff options
author | Bas van Beek <b.f.van.beek@vu.nl> | 2021-04-15 14:40:21 +0200 |
---|---|---|
committer | Bas van Beek <b.f.van.beek@vu.nl> | 2021-04-15 14:45:50 +0200 |
commit | cfbcd38558045197eded5cb84b8c8fe006a77480 (patch) | |
tree | 2e9ed21200c1357c85354406d7134036a3c3d73e /numpy/linalg/__init__.py | |
parent | 181f273a59744d58f90f45d953a3285484c72cba (diff) | |
download | numpy-cfbcd38558045197eded5cb84b8c8fe006a77480.tar.gz |
ENH: Add `__all__` to a number of public modules
Diffstat (limited to 'numpy/linalg/__init__.py')
-rw-r--r-- | numpy/linalg/__init__.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/numpy/linalg/__init__.py b/numpy/linalg/__init__.py index 3a53ac6ec..93943de38 100644 --- a/numpy/linalg/__init__.py +++ b/numpy/linalg/__init__.py @@ -70,8 +70,11 @@ Exceptions """ # To get sub-modules +from . import linalg from .linalg import * +__all__ = linalg.__all__.copy() + from numpy._pytesttester import PytestTester test = PytestTester(__name__) del PytestTester |