Lines Matching refs:StopIteration
30 except StopIteration as ex:
104 except StopIteration:
119 except StopIteration as ex:
158 except StopIteration as ex:
194 except StopIteration as ex:
214 raise StopIteration
404 except StopIteration as ex:
426 except StopIteration as ex:
433 except StopIteration as ex:
440 except StopIteration as ex:
461 with self.assertRaises(StopIteration):
496 with self.assertRaises(StopIteration) as cm:
507 yield StopIteration(1)
509 yield StopIteration(3)
515 self.assertIsInstance(v, StopIteration)
517 with self.assertRaises(StopIteration) as cm:
520 self.assertIsInstance(v, StopIteration)
825 with self.assertRaises(StopIteration):
917 with self.assertRaises(StopIteration):
964 yield StopIteration(2)
971 self.assertIsInstance(v, StopIteration)