| 3552 | #undef INNER_WHERE_LOOP |
| 3553 | |
| 3554 | static PyObject * |
| 3555 | array_where(PyObject *NPY_UNUSED(ignored), PyObject *const *args, Py_ssize_t len_args) |
| 3556 | { |
| 3557 | PyObject *obj = NULL, *x = NULL, *y = NULL; |
| 3558 | |
| 3559 | NPY_PREPARE_ARGPARSER; |
| 3560 | if (npy_parse_arguments("where", args, len_args, NULL, |
| 3561 | "", NULL, &obj, |
| 3562 | "|x", NULL, &x, |
| 3563 | "|y", NULL, &y, |
| 3564 | NULL, NULL, NULL) < 0) { |
| 3565 | return NULL; |
| 3566 | } |
| 3567 | |
| 3568 | return PyArray_Where(obj, x, y); |
| 3569 | } |
| 3570 | |
| 3571 | static PyObject * |
| 3572 | array_lexsort(PyObject *NPY_UNUSED(ignored), PyObject *const *args, Py_ssize_t len_args, |
nothing calls this directly
no test coverage detected