summaryrefslogtreecommitdiff
path: root/numpy/testing/utils.py
diff options
context:
space:
mode:
authorDavid Cournapeau <cournape@gmail.com>2010-02-09 08:40:23 +0000
committerDavid Cournapeau <cournape@gmail.com>2010-02-09 08:40:23 +0000
commit3e5a12cb388e5d9a0b8dba3d1ebf4c55bf419272 (patch)
tree00509822e1810e63793848f8135a68c8abb280fd /numpy/testing/utils.py
parent9ad03afec07ebc43e1a5315d323f219fa8738d71 (diff)
downloadnumpy-3e5a12cb388e5d9a0b8dba3d1ebf4c55bf419272.tar.gz
BUG: fix typo.
Diffstat (limited to 'numpy/testing/utils.py')
-rw-r--r--numpy/testing/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/testing/utils.py b/numpy/testing/utils.py
index abb2956a1..012313618 100644
--- a/numpy/testing/utils.py
+++ b/numpy/testing/utils.py
@@ -1152,7 +1152,7 @@ def nulp_diff(x, y, dtype=None):
t = np.common_type(x, y)
if np.iscomplexobj(x) or np.iscomplexobj(y):
- raise NotImplementerError("_nulp not implemented for complex array")
+ raise NotImplementedError("_nulp not implemented for complex array")
x = np.array(x, dtype=t)
y = np.array(y, dtype=t)