diff options
author | Travis Oliphant <oliphant@enthought.com> | 2005-12-28 03:17:55 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2005-12-28 03:17:55 +0000 |
commit | 922f7cf07fcce95f510222b464cdc757f40ef57f (patch) | |
tree | ddc75cce90be2bff70a0c2863c1b4996f1aadf34 /scipy/base/convertcode.py | |
parent | 4b61fd0dc145083b566028edc691c5f2d1d5936f (diff) | |
download | numpy-922f7cf07fcce95f510222b464cdc757f40ef57f.tar.gz |
Added an mlab so that there is one file to replace the old MLab functionality.
Diffstat (limited to 'scipy/base/convertcode.py')
-rw-r--r-- | scipy/base/convertcode.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scipy/base/convertcode.py b/scipy/base/convertcode.py index 1d93b94ed..792ed384c 100644 --- a/scipy/base/convertcode.py +++ b/scipy/base/convertcode.py @@ -99,7 +99,7 @@ def fromstr(filestr): filestr, fromall1 = changeimports(filestr, 'Precision', 'scipy.base') filestr, fromall2 = changeimports(filestr, 'numerix', 'scipy.base') filestr, fromall3 = changeimports(filestr, 'scipy_base', 'scipy.base') - filestr, fromall3 = changeimports(filestr, 'MLab', 'scipy.corelinalg') + filestr, fromall3 = changeimports(filestr, 'MLab', 'scipy.base.mlab') filestr, fromall3 = changeimports(filestr, 'LinearAlgebra', 'scipy.corelinalg') filestr, fromall3 = changeimports(filestr, 'RNG', 'scipy.random') filestr, fromall3 = changeimports(filestr, 'RandomArray', 'scipy.random') |