10000 fix for non-generic_legacy lopps · numpy/numpy@ef9f35a · GitHub
[go: up one dir, main page]

Skip to content

Commit ef9f35a

Browse files
committed
fix for non-generic_legacy lopps
1 parent cfa2b17 commit ef9f35a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

numpy/core/src/umath/ufunc_object.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6435,6 +6435,10 @@ ufunc_at(PyUFuncObject *ufunc, PyObject *args)
64356435
fast_path = 0;
64366436
}
64376437
}
6438+
else {
6439+
/* Not a known loop function */
6440+
fast_path = 0;
6441+
}
64386442
if (fast_path) {
64396443
PyUFuncGenericFunction loop = get_inner_loop(auxdata);
64406444

0 commit comments

Comments
 (0)
0