(self, typ, val=None, tb=None)
| 500 | return self._coro.send(value) |
| 501 | |
| 502 | def throw(self, typ, val=None, tb=None): |
| 503 | if val is None: |
| 504 | return self._coro.throw(typ) |
| 505 | elif tb is None: |
| 506 | return self._coro.throw(typ, val) |
| 507 | else: |
| 508 | return self._coro.throw(typ, val, tb) |
| 509 | |
| 510 | def close(self): |
| 511 | return self._coro.close() |
no outgoing calls