(self, sock, address)
| 723 | return await self._proactor.sendto(sock, data, 0, address) |
| 724 | |
| 725 | async def sock_connect(self, sock, address): |
| 726 | if self._debug and sock.gettimeout() != 0: |
| 727 | raise ValueError("the socket must be non-blocking") |
| 728 | return await self._proactor.connect(sock, address) |
| 729 | |
| 730 | async def sock_accept(self, sock): |
| 731 | return await self._proactor.accept(sock) |
nothing calls this directly
no test coverage detected