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

Method recv

Lib/multiprocessing/connection.py:1019–1021  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1017 s = self._dumps(obj)
1018 self._conn.send_bytes(s)
1019 def recv(self):
1020 s = self._conn.recv_bytes()
1021 return self._loads(s)
1022
1023def _xml_dumps(obj):
1024 return xmlrpclib.dumps((obj,), None, None, None, 1).encode('utf-8')

Callers

nothing calls this directly

Calls 1

recv_bytesMethod · 0.45

Tested by

no test coverage detected