summaryrefslogtreecommitdiff
path: root/numpy/__init__.py
diff options
context:
space:
mode:
authorDavid Cournapeau <cournape@gmail.com>2009-09-16 07:12:46 +0000
committerDavid Cournapeau <cournape@gmail.com>2009-09-16 07:12:46 +0000
commitfe002b2916a5928463f7c46c5c4875114228bf7f (patch)
tree1f56e956eae72299b91a84b2cf6874f7ec73d4fa /numpy/__init__.py
parentec7f9dcddd216019bcf15d162926c4df6355860e (diff)
downloadnumpy-fe002b2916a5928463f7c46c5c4875114228bf7f.tar.gz
Move matrix class into its own module.
Diffstat (limited to 'numpy/__init__.py')
-rw-r--r--numpy/__init__.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/numpy/__init__.py b/numpy/__init__.py
index 90f9e687c..d7d5b4371 100644
--- a/numpy/__init__.py
+++ b/numpy/__init__.py
@@ -145,6 +145,8 @@ else:
import random
import ctypeslib
import ma
+ import matrx as _mat
+ from matrx import *
# Make these accessible from numpy name-space
# but not imported in from numpy import *
@@ -155,5 +157,6 @@ else:
__all__.extend(['__version__', 'pkgload', 'PackageLoader',
'show_config'])
__all__.extend(core.__all__)
+ __all__.extend(_mat.__all__)
__all__.extend(lib.__all__)
__all__.extend(['linalg', 'fft', 'random', 'ctypeslib', 'ma'])