Lines Matching refs:next
13 but it=iter(range(10)) starts at ten, and then goes to nine after next(it).
18 report the original length minus the cumulative number of calls to next().
58 next(it)
60 self.assertRaises(StopIteration, next, it)
71 next(it)
74 self.assertRaises(RuntimeError, next, it)
153 next(it)
154 next(it)
173 next(it)
174 next(it)