diff options
author | Debsankha Manik <dmanik@gwdg.de> | 2019-03-30 11:01:45 +0100 |
---|---|---|
committer | Debsankha Manik <dmanik@gwdg.de> | 2019-03-30 11:49:53 +0100 |
commit | 56091f53c5bfd2c8329fe837dcb7134dece9602b (patch) | |
tree | e8903e7aec3bd1ef16424bfa00c11c64935eb26e | |
parent | 7b35d050ab86c3ac32f4eab42b238acf9ace3348 (diff) | |
download | numpy-56091f53c5bfd2c8329fe837dcb7134dece9602b.tar.gz |
MAINT: added missing return in PyUFunc_IsFiniteTypeResolver
-rw-r--r-- | numpy/core/src/umath/ufunc_type_resolution.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/src/umath/ufunc_type_resolution.c b/numpy/core/src/umath/ufunc_type_resolution.c index c34ed23b5..b2400a2a1 100644 --- a/numpy/core/src/umath/ufunc_type_resolution.c +++ b/numpy/core/src/umath/ufunc_type_resolution.c @@ -620,7 +620,7 @@ PyUFunc_IsFiniteTypeResolver(PyUFuncObject *ufunc, PyArray_Descr **out_dtypes) { if (!PyTypeNum_ISDATETIME(PyArray_DESCR(operands[0])->type_num)) { - PyUFunc_DefaultTypeResolver(ufunc, casting, operands, + return PyUFunc_DefaultTypeResolver(ufunc, casting, operands, type_tup, out_dtypes); } |