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

Method sock_recvfrom

Lib/asyncio/proactor_events.py:710–711  ·  view source on GitHub ↗
(self, sock, bufsize)

Source from the content-addressed store, hash-verified

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)
712
713 async def sock_recvfrom_into(self, sock, buf, nbytes=0):
714 if not nbytes:

Callers

nothing calls this directly

Calls 1

recvfromMethod · 0.45

Tested by

no test coverage detected