diff options
author | David Cournapeau <cournape@gmail.com> | 2009-09-18 09:59:24 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-09-18 09:59:24 +0000 |
commit | 599b0f1e83494c56d01ac24d7605bc3e8da0cd6e (patch) | |
tree | 02c396f2047e71761d9ef11413cdcde376cbe5c8 /numpy/matrixlib/__init__.py | |
parent | 957cd7931740bce0ed9ffb12b47afde6c089dadf (diff) | |
download | numpy-599b0f1e83494c56d01ac24d7605bc3e8da0cd6e.tar.gz |
Rename matrx to matrixlib.
I forgot to commit the name change suggested by Stefan. You need to
clean build/install directory when updating to this version.
Diffstat (limited to 'numpy/matrixlib/__init__.py')
-rw-r--r-- | numpy/matrixlib/__init__.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/numpy/matrixlib/__init__.py b/numpy/matrixlib/__init__.py new file mode 100644 index 000000000..bdc653b06 --- /dev/null +++ b/numpy/matrixlib/__init__.py @@ -0,0 +1,7 @@ +from defmatrix import * + +__all__ = defmatrix.__all__ + +from numpy.testing import Tester +test = Tester().test +bench = Tester().bench |