MCPcopy Index your code
hub / github.com/python/cpython / sock_sendall

Method sock_sendall

Lib/asyncio/proactor_events.py:719–720  ·  view source on GitHub ↗
(self, sock, data)

Source from the content-addressed store, hash-verified

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)

Callers

nothing calls this directly

Calls 1

sendMethod · 0.45

Tested by

no test coverage detected