diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-01-04 22:37:16 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-01-04 22:37:16 +0000 |
commit | 5cfcf93bf09c3a78654099ddcb3b7b184e8d4615 (patch) | |
tree | 2ba7ac321aa765f08bc2413f178fd74d4eb8c1ff /numpy/lib/tests/test_function_base.py | |
parent | 490712cd35dcecfc9423de4bde0b29cb012dda25 (diff) | |
download | numpy-5cfcf93bf09c3a78654099ddcb3b7b184e8d4615.tar.gz |
More fixes...
Diffstat (limited to 'numpy/lib/tests/test_function_base.py')
-rw-r--r-- | numpy/lib/tests/test_function_base.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/numpy/lib/tests/test_function_base.py b/numpy/lib/tests/test_function_base.py index 37d3db1bf..41cdf45b4 100644 --- a/numpy/lib/tests/test_function_base.py +++ b/numpy/lib/tests/test_function_base.py @@ -3,8 +3,9 @@ import sys from numpy.testing import * set_package_path() -import numpy.base;reload(numpy.base) -from numpy.base import * +import numpy.lib;reload(numpy.lib) +from numpy.lib import * +from numpy.core import * del sys.path[0] class test_any(ScipyTestCase): |