summaryrefslogtreecommitdiff
path: root/numpy/core/src
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2006-10-17 16:35:20 +0000
committerTravis Oliphant <oliphant@enthought.com>2006-10-17 16:35:20 +0000
commit637f70c7236c547e575d74e68ed8d971a4799aa0 (patch)
treebd0d66db4a9c3057b1d1b3617dbef12793e79001 /numpy/core/src
parentcf7a96e9c975a1a71d4d6737b84b80cc202328fc (diff)
downloadnumpy-637f70c7236c547e575d74e68ed8d971a4799aa0.tar.gz
Fix #350 by changing wording.
Diffstat (limited to 'numpy/core/src')
-rw-r--r--numpy/core/src/ufuncobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/src/ufuncobject.c b/numpy/core/src/ufuncobject.c
index 217f4e630..6de29e3a6 100644
--- a/numpy/core/src/ufuncobject.c
+++ b/numpy/core/src/ufuncobject.c
@@ -548,7 +548,7 @@ PyUFunc_handlefperr(int errmask, PyObject *errobj, int retstatus)
HANDLEIT(DIVIDEBYZERO, "divide by zero");
HANDLEIT(OVERFLOW, "overflow");
HANDLEIT(UNDERFLOW, "underflow");
- HANDLEIT(INVALID, "invalid");
+ HANDLEIT(INVALID, "invalid value");
}
return 0;
}