MCPcopy Create free account
hub / github.com/numpy/numpy / arrayiter_dealloc

Function arrayiter_dealloc

numpy/core/src/multiarray/iterators.c:399–408  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

397}
398
399static void
400arrayiter_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
410static Py_ssize_t
411iter_length(PyArrayIterObject *self)

Callers

nothing calls this directly

Calls 1

array_iter_base_deallocFunction · 0.85

Tested by

no test coverage detected