| 1248 | def athrow(self, typ, val=None, tb=None): pass |
| 1249 | |
| 1250 | class NonAGen2: |
| 1251 | def __aiter__(self): return self |
| 1252 | def __anext__(self): return None |
| 1253 | def aclose(self): pass |
| 1254 | def asend(self, value): return value |
| 1255 | |
| 1256 | class NonAGen3: |
| 1257 | def aclose(self): pass |
no outgoing calls
searching dependent graphs…