| 848 | } |
| 849 | |
| 850 | static PyObject * |
| 851 | array_flat_get(PyArrayObject *self, void *NPY_UNUSED(ignored)) |
| 852 | { |
| 853 | return PyArray_IterNew((PyObject *)self); |
| 854 | } |
| 855 | |
| 856 | static int |
| 857 | array_flat_set(PyArrayObject *self, PyObject *val, void *NPY_UNUSED(ignored)) |
nothing calls this directly
no test coverage detected