diff options
author | Travis Oliphant <oliphant@enthought.com> | 2005-12-26 04:25:46 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2005-12-26 04:25:46 +0000 |
commit | 08be341967d1bfdd1646e801ad23909e667e12c9 (patch) | |
tree | e2d5a16df9f34636bbf2e1660111448c8bccffdb /scipy/base/convertcode.py | |
parent | e9d1483f0a5fa027d86f8c4084de9dfa4e5e4639 (diff) | |
download | numpy-08be341967d1bfdd1646e801ad23909e667e12c9.tar.gz |
Changed corerandom to random to reflect that it will not be 'supplanted' by full scipy.
Diffstat (limited to 'scipy/base/convertcode.py')
-rw-r--r-- | scipy/base/convertcode.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scipy/base/convertcode.py b/scipy/base/convertcode.py index f30317f9f..902407873 100644 --- a/scipy/base/convertcode.py +++ b/scipy/base/convertcode.py @@ -101,8 +101,8 @@ def fromstr(filestr): filestr, fromall3 = changeimports(filestr, 'scipy_base', 'scipy.base') filestr, fromall3 = changeimports(filestr, 'MLab', 'scipy.corelinalg') filestr, fromall3 = changeimports(filestr, 'LinearAlgebra', 'scipy.corelinalg') - filestr, fromall3 = changeimports(filestr, 'RNG', 'scipy.corerandom') - filestr, fromall3 = changeimports(filestr, 'RandomArray', 'scipy.corerandom') + filestr, fromall3 = changeimports(filestr, 'RNG', 'scipy.random') + filestr, fromall3 = changeimports(filestr, 'RandomArray', 'scipy.random') filestr, fromall3 = changeimports(filestr, 'FFT', 'scipy.corefft') filestr, fromall3 = changeimports(filestr, 'MA', 'scipy.base.ma') fromall = fromall1 or fromall2 or fromall3 |