diff options
author | Eric Jones <eric@enthought.com> | 2002-04-03 03:41:30 +0000 |
---|---|---|
committer | Eric Jones <eric@enthought.com> | 2002-04-03 03:41:30 +0000 |
commit | c117d3173e31d74ed97c811a5ef208ab1c72c263 (patch) | |
tree | 391467827e23f98a8da238d8952a0516ef06392c /weave/ast_tools.py | |
parent | b6c68d69358a03fb22f25f40014cff97aed5e15c (diff) | |
download | numpy-c117d3173e31d74ed97c811a5ef208ab1c72c263.tar.gz |
r1array and r2array converted to atleast_1d and atleast_2d
Diffstat (limited to 'weave/ast_tools.py')
-rw-r--r-- | weave/ast_tools.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/weave/ast_tools.py b/weave/ast_tools.py index b4cd73d44..48b87cd90 100644 --- a/weave/ast_tools.py +++ b/weave/ast_tools.py @@ -198,11 +198,11 @@ def tuples_to_lists(ast_tuple): return new_list def test(level=10): - from scipy_test import module_test + from scipy_base.testing import module_test module_test(__name__,__file__,level=level) def test_suite(level=1): - from scipy_test import module_test_suite + from scipy_base.testing import module_test_suite return module_test_suite(__name__,__file__,level=level) """ |