Home | History | Annotate | Download | only in test

Lines Matching refs:StopNow

37 class StopNow:
920 self.assertRaises(StopIteration, f(StopNow()).next)
923 self.assertRaises(StopIteration, islice(StopNow(), None).next)
928 p, q = tee(StopNow())
936 self.assertRaises(StopIteration, f(lambda x:x, StopNow()).next)