(self, sock, data)
| 717 | return await self._proactor.recvfrom_into(sock, buf, nbytes) |
| 718 | |
| 719 | async def sock_sendall(self, sock, data): |
| 720 | return await self._proactor.send(sock, data) |
| 721 | |
| 722 | async def sock_sendto(self, sock, data, address): |
| 723 | return await self._proactor.sendto(sock, data, 0, address) |