| 2552 | |
| 2553 | |
| 2554 | static PyObject * |
| 2555 | array_nonzero(PyArrayObject *self, PyObject *args) |
| 2556 | { |
| 2557 | if (!PyArg_ParseTuple(args, "")) { |
| 2558 | return NULL; |
| 2559 | } |
| 2560 | return PyArray_Nonzero(self); |
| 2561 | } |
| 2562 | |
| 2563 | |
| 2564 | static PyObject * |
nothing calls this directly
no test coverage detected