| 1202 | def throw(self, typ, val=None, tb=None): pass |
| 1203 | |
| 1204 | class MinimalGen(Generator): |
| 1205 | def send(self, value): |
| 1206 | return value |
| 1207 | def throw(self, typ, val=None, tb=None): |
| 1208 | super().throw(typ, val, tb) |
| 1209 | |
| 1210 | def gen(): |
| 1211 | yield 1 |
no outgoing calls
searching dependent graphs…