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

Method sock_recv

Lib/asyncio/proactor_events.py:704–705  ·  view source on GitHub ↗
(self, sock, n)

Source from the content-addressed store, hash-verified

702 super().close()
703
704 async def sock_recv(self, sock, n):
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)

Callers

nothing calls this directly

Calls 1

recvMethod · 0.45

Tested by

no test coverage detected