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

Function multi_DECREF

numpy/core/src/multiarray/mapping.c:163–170  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

161}
162
163static inline void
164multi_DECREF(PyObject **objects, npy_intp n)
165{
166 npy_intp i;
167 for (i = 0; i < n; i++) {
168 Py_DECREF(objects[i]);
169 }
170}
171
172/**
173 * Unpack a tuple into an array of new references. Returns the number of objects

Callers 1

prepare_indexFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected