summaryrefslogtreecommitdiff
path: root/numpy/matlib.py
diff options
context:
space:
mode:
authorcookedm <cookedm@localhost>2008-01-05 18:44:28 +0000
committercookedm <cookedm@localhost>2008-01-05 18:44:28 +0000
commit055499c61699cdf5f1ea81924dacdf5e39945992 (patch)
tree196363df6444426bdf81feb18f6c784ff7cda7df /numpy/matlib.py
parent721e160f982453c5de951af09465c7be5c7805d0 (diff)
downloadpython-numpy-055499c61699cdf5f1ea81924dacdf5e39945992.tar.gz
python-numpy-055499c61699cdf5f1ea81924dacdf5e39945992.tar.bz2
python-numpy-055499c61699cdf5f1ea81924dacdf5e39945992.zip
Fix regression in r4659; matlib.py should use from numpy import *
Diffstat (limited to 'numpy/matlib.py')
-rw-r--r--numpy/matlib.py3
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__