| 397 | } |
| 398 | |
| 399 | static void |
| 400 | arrayiter_dealloc(PyArrayIterObject *it) |
| 401 | { |
| 402 | /* |
| 403 | * Note that it is possible to statically allocate a PyArrayIterObject, |
| 404 | * which does not call this function. |
| 405 | */ |
| 406 | array_iter_base_dealloc(it); |
| 407 | PyArray_free(it); |
| 408 | } |
| 409 | |
| 410 | static Py_ssize_t |
| 411 | iter_length(PyArrayIterObject *self) |
nothing calls this directly
no test coverage detected