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

Method sock_recv_into

Lib/asyncio/proactor_events.py:707–708  ·  view source on GitHub ↗
(self, sock, buf)

Source from the content-addressed store, hash-verified

705 return await self._proactor.recv(sock, n)
706
707 async def sock_recv_into(self, sock, buf):
708 return await self._proactor.recv_into(sock, buf)
709
710 async def sock_recvfrom(self, sock, bufsize):
711 return await self._proactor.recvfrom(sock, bufsize)

Callers

nothing calls this directly

Calls 1

recv_intoMethod · 0.45

Tested by

no test coverage detected