diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-10-17 16:35:20 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-10-17 16:35:20 +0000 |
commit | 637f70c7236c547e575d74e68ed8d971a4799aa0 (patch) | |
tree | bd0d66db4a9c3057b1d1b3617dbef12793e79001 /numpy/core/src | |
parent | cf7a96e9c975a1a71d4d6737b84b80cc202328fc (diff) | |
download | numpy-637f70c7236c547e575d74e68ed8d971a4799aa0.tar.gz |
Fix #350 by changing wording.
Diffstat (limited to 'numpy/core/src')
-rw-r--r-- | numpy/core/src/ufuncobject.c | 2 |
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; } |