()
| 961 | |
| 962 | |
| 963 | def test_iter_next(): |
| 964 | a = pm.eval("([1, 3, 5, 6, 2])") |
| 965 | iterator = iter(a) |
| 966 | try: |
| 967 | while True: |
| 968 | element = next(iterator) |
| 969 | assert (False) |
| 970 | except StopIteration: |
| 971 | assert (True) |
| 972 | |
| 973 | # reverse_iter |
| 974 |
nothing calls this directly
no outgoing calls
no test coverage detected