diff options
author | Stefan van der Walt <stefan@sun.ac.za> | 2006-07-24 12:37:51 +0000 |
---|---|---|
committer | Stefan van der Walt <stefan@sun.ac.za> | 2006-07-24 12:37:51 +0000 |
commit | f9a971eeef6761cedc6e48cb1dcf7af3f7966925 (patch) | |
tree | 36fa3701b4f6c1f0e04bab2bb8f08b5245119a38 /numpy/matlib.py | |
parent | 9355b1c4c1daea10f32819111d36030ddd84f217 (diff) | |
download | numpy-f9a971eeef6761cedc6e48cb1dcf7af3f7966925.tar.gz |
Fix ticket #203 [for Andrew Straw].
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'): |