diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-03-15 02:53:57 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-03-15 02:53:57 +0000 |
commit | db77da02aced7b10bd3fd8306cf66d88a0e8800e (patch) | |
tree | 679a33cb2ba479d70ca376c328c92880bc4bc96c /numpy/lib | |
parent | 9682b2c4abe69d055d7e56c2a53e5e0955e75ab3 (diff) | |
download | numpy-db77da02aced7b10bd3fd8306cf66d88a0e8800e.tar.gz |
Isolate Numeric compatibility to numpy.linalg.old
Diffstat (limited to 'numpy/lib')
-rw-r--r-- | numpy/lib/convertcode.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/lib/convertcode.py b/numpy/lib/convertcode.py index 38504d5a2..8587993c4 100644 --- a/numpy/lib/convertcode.py +++ b/numpy/lib/convertcode.py @@ -99,7 +99,8 @@ def fromstr(filestr): filestr, fromall2 = changeimports(filestr, 'numerix', 'numpy') filestr, fromall3 = changeimports(filestr, 'numpy_base', 'numpy') filestr, fromall3 = changeimports(filestr, 'MLab', 'numpy.lib.mlab') - filestr, fromall3 = changeimports(filestr, 'LinearAlgebra', 'numpy.linalg') + filestr, fromall3 = changeimports(filestr, 'LinearAlgebra', + 'numpy.linalg.old') filestr, fromall3 = changeimports(filestr, 'RNG', 'numpy.random') filestr, fromall3 = changeimports(filestr, 'RandomArray', 'numpy.random') filestr, fromall3 = changeimports(filestr, 'FFT', 'numpy.dft') |