diff options
Diffstat (limited to 'numpy/matlib.py')
-rw-r--r-- | numpy/matlib.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/matlib.py b/numpy/matlib.py index 568169888..4ffc0ba13 100644 --- a/numpy/matlib.py +++ b/numpy/matlib.py @@ -1,6 +1,7 @@ import numpy as np -from numpy import ndarray, array from numpy.core.defmatrix import matrix, asmatrix +# need * as we're copying the numpy namespace +from numpy import * __version__ = np.__version__ |