diff options
author | Travis Oliphant <oliphant@enthought.com> | 2005-10-07 20:19:55 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2005-10-07 20:19:55 +0000 |
commit | 52c686c981609fdb2e0e45aba16626a7e14cc3d4 (patch) | |
tree | 4ae5bdea24a4a3cab5466ea4c9ca467c09230bb6 /scipy/base/convertcode.py | |
parent | 4d0a78f748058792ab4b2d9cb394589372d0e740 (diff) | |
download | numpy-52c686c981609fdb2e0e45aba16626a7e14cc3d4.tar.gz |
Moved extra modules to basic
Diffstat (limited to 'scipy/base/convertcode.py')
-rw-r--r-- | scipy/base/convertcode.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/scipy/base/convertcode.py b/scipy/base/convertcode.py index 9ff2c31a9..f84d022d9 100644 --- a/scipy/base/convertcode.py +++ b/scipy/base/convertcode.py @@ -120,11 +120,11 @@ 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.linalg') - filestr, fromall3 = changeimports(filestr, 'LinearAlgebra', 'scipy.linalg') - filestr, fromall3 = changeimports(filestr, 'RNG', 'scipy.random') - filestr, fromall3 = changeimports(filestr, 'RandomArray', 'scipy.random') - filestr, fromall3 = changeimports(filestr, 'FFT', 'scipy.fftpack') + filestr, fromall3 = changeimports(filestr, 'MLab', 'scipy.basic.linalg') + filestr, fromall3 = changeimports(filestr, 'LinearAlgebra', 'scipy.basic.linalg') + filestr, fromall3 = changeimports(filestr, 'RNG', 'scipy.basic.random') + filestr, fromall3 = changeimports(filestr, 'RandomArray', 'scipy.basic.random') + filestr, fromall3 = changeimports(filestr, 'FFT', 'scipy.basdic.fft') filestr, fromall3 = changeimports(filestr, 'MA', 'scipy.base.ma') fromall = fromall1 or fromall2 or fromall3 filestr = replaceattr(filestr) |