| 1229 | self.assertRaises(StopIteration, mgen.throw, StopIteration()) |
| 1230 | |
| 1231 | class FailOnClose(Generator): |
| 1232 | def send(self, value): return value |
| 1233 | def throw(self, *args): raise ValueError |
| 1234 | |
| 1235 | self.assertRaises(ValueError, FailOnClose().close) |
| 1236 |
no outgoing calls
searching dependent graphs…