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

Method sock_recvfrom_into

Lib/asyncio/proactor_events.py:713–717  ·  view source on GitHub ↗
(self, sock, buf, nbytes=0)

Source from the content-addressed store, hash-verified

711 return await self._proactor.recvfrom(sock, bufsize)
712
713 async def sock_recvfrom_into(self, sock, buf, nbytes=0):
714 if not nbytes:
715 nbytes = len(buf)
716
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)

Callers

nothing calls this directly

Calls 1

recvfrom_intoMethod · 0.45

Tested by

no test coverage detected