diff options
author | Travis Oliphant <oliphant@enthought.com> | 2005-09-26 20:18:56 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2005-09-26 20:18:56 +0000 |
commit | ccd1c3db37672627aa4fe0fdb5437f5dddc0fe86 (patch) | |
tree | f1bb4da472d92a03e6705e79d074aa4fdeb93bf2 /scipy/test/testing.py | |
parent | 8ac222e304fdd59394725d27e82168a95eadaf1c (diff) | |
download | numpy-ccd1c3db37672627aa4fe0fdb5437f5dddc0fe86.tar.gz |
Added weave.
Diffstat (limited to 'scipy/test/testing.py')
-rw-r--r-- | scipy/test/testing.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scipy/test/testing.py b/scipy/test/testing.py index 48752e5b5..01f2246ed 100644 --- a/scipy/test/testing.py +++ b/scipy/test/testing.py @@ -791,11 +791,11 @@ def output_exception(): finally: type = value = tb = None # clean up -from scipy_base.numerix import alltrue, equal, shape, ravel, around, zeros,\ +from scipy.base import alltrue, equal, shape, ravel, around, zeros,\ Float64, asarray, less_equal, array2string, less, ArrayType try: - from scipy_base.numerix import fastumath as math + import scipy.base.umath as math except ImportError,msg: print msg import math |