(self, fd, fut, handle=None)
| 674 | fut = None |
| 675 | |
| 676 | def _sock_write_done(self, fd, fut, handle=None): |
| 677 | if handle is None or not handle.cancelled(): |
| 678 | self.remove_writer(fd) |
| 679 | |
| 680 | def _sock_connect_cb(self, fut, sock, address): |
| 681 | if fut.done(): |
nothing calls this directly
no test coverage detected