diff options
author | David Cournapeau <cournape@gmail.com> | 2009-09-16 07:12:46 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-09-16 07:12:46 +0000 |
commit | fe002b2916a5928463f7c46c5c4875114228bf7f (patch) | |
tree | 1f56e956eae72299b91a84b2cf6874f7ec73d4fa /numpy/lib/tests/test_shape_base.py | |
parent | ec7f9dcddd216019bcf15d162926c4df6355860e (diff) | |
download | numpy-fe002b2916a5928463f7c46c5c4875114228bf7f.tar.gz |
Move matrix class into its own module.
Diffstat (limited to 'numpy/lib/tests/test_shape_base.py')
-rw-r--r-- | numpy/lib/tests/test_shape_base.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/lib/tests/test_shape_base.py b/numpy/lib/tests/test_shape_base.py index 59c48dba0..66c396324 100644 --- a/numpy/lib/tests/test_shape_base.py +++ b/numpy/lib/tests/test_shape_base.py @@ -1,6 +1,7 @@ from numpy.testing import * from numpy.lib import * from numpy.core import * +from numpy import matrix, asmatrix class TestApplyAlongAxis(TestCase): def test_simple(self): |