diff options
Diffstat (limited to 'numpy/matlib.py')
-rw-r--r-- | numpy/matlib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/matlib.py b/numpy/matlib.py index 2923fe352..3e1bf0493 100644 --- a/numpy/matlib.py +++ b/numpy/matlib.py @@ -5,7 +5,7 @@ from numpy import * __version__ = N.__version__ -__all__ = N.__all__ +__all__ = N.__all__[:] # copy numpy namespace __all__ += ['rand', 'randn'] def empty(shape, dtype=None, order='C'): |