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

Function iter_iterindices

numpy/core/tests/test_nditer.py:30–35  ·  view source on GitHub ↗
(i)

Source from the content-addressed store, hash-verified

28 return ret
29
30def iter_iterindices(i):
31 ret = []
32 while not i.finished:
33 ret.append(i.iterindex)
34 i.iternext()
35 return ret
36
37@pytest.mark.skipif(not HAS_REFCOUNT, reason="Python lacks refcounts")
38def test_iter_refcount():

Callers 1

test_iter_iterindexFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected