(i)
| 28 | return ret |
| 29 | |
| 30 | def 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") |
| 38 | def test_iter_refcount(): |
no outgoing calls
no test coverage detected