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

Method send

Lib/multiprocessing/connection.py:1016–1018  ·  view source on GitHub ↗
(self, obj)

Source from the content-addressed store, hash-verified

1014 obj = getattr(conn, attr)
1015 setattr(self, attr, obj)
1016 def send(self, obj):
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)

Callers

nothing calls this directly

Calls 1

send_bytesMethod · 0.45

Tested by

no test coverage detected