diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-03-15 09:29:30 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-03-15 09:29:30 +0000 |
commit | abe1567d970117ed9a3634c10c843da2e3399f60 (patch) | |
tree | 47496f919fafa3bd96d7f6ae8f0c0f083d85eb95 /numpy/linalg/old.py | |
parent | 24cd77be0d56b1a98424d4f31aa58b506c4598e0 (diff) | |
download | numpy-abe1567d970117ed9a3634c10c843da2e3399f60.tar.gz |
Fix-up name-spaces.
Diffstat (limited to 'numpy/linalg/old.py')
-rw-r--r-- | numpy/linalg/old.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/numpy/linalg/old.py b/numpy/linalg/old.py index a1c3a033f..2ac1e9d48 100644 --- a/numpy/linalg/old.py +++ b/numpy/linalg/old.py @@ -18,12 +18,10 @@ __all__ = ['LinAlgError', 'solve_linear_equations', from numpy.core import transpose import linalg -# Error object -class LinAlgError(Exception): - pass - # Linear equations +LinAlgError = linalg.LinAlgError + def solve_linear_equations(a, b): return linalg.solve(a,b) |