summaryrefslogtreecommitdiff
path: root/numpy/core/src
diff options
context:
space:
mode:
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;
}