summaryrefslogtreecommitdiff
path: root/numpy/testing/utils.py
diff options
context:
space:
mode:
authorAlan McIntyre <alan.mcintyre@local>2008-09-09 17:48:47 +0000
committerAlan McIntyre <alan.mcintyre@local>2008-09-09 17:48:47 +0000
commit9351f2e02f643a9fadb35d8bb9eacf804b905d51 (patch)
treef91b2bb2b4b72520757379470f0806e23903903c /numpy/testing/utils.py
parent27d5aff700a2841cc0a30a4f774dcc67363fa287 (diff)
downloadnumpy-9351f2e02f643a9fadb35d8bb9eacf804b905d51.tar.gz
Removed unused imports.
Diffstat (limited to 'numpy/testing/utils.py')
-rw-r--r--numpy/testing/utils.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/numpy/testing/utils.py b/numpy/testing/utils.py
index 6f3eb15c7..35373734d 100644
--- a/numpy/testing/utils.py
+++ b/numpy/testing/utils.py
@@ -241,7 +241,6 @@ def assert_approx_equal(actual,desired,significant=7,err_msg='',verbose=True):
def assert_array_compare(comparison, x, y, err_msg='', verbose=True,
header=''):
from numpy.core import asarray, isnan, any
- from numpy import isreal, iscomplex
x = asarray(x)
y = asarray(y)