(self, sock, buf, nbytes=0)
| 711 | return await self._proactor.recvfrom(sock, bufsize) |
| 712 | |
| 713 | async def sock_recvfrom_into(self, sock, buf, nbytes=0): |
| 714 | if not nbytes: |
| 715 | nbytes = len(buf) |
| 716 | |
| 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) |
nothing calls this directly
no test coverage detected