(self, fd, fut, handle=None)
| 391 | return await fut |
| 392 | |
| 393 | def _sock_read_done(self, fd, fut, handle=None): |
| 394 | if handle is None or not handle.cancelled(): |
| 395 | self.remove_reader(fd) |
| 396 | |
| 397 | def _sock_recv(self, fut, sock, n): |
| 398 | # _sock_recv() can add itself as an I/O callback if the operation can't |
nothing calls this directly
no test coverage detected