MCPcopy Index your code
hub / github.com/RustPython/RustPython / send

Method send

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

Source from the content-addressed store, hash-verified

976 obj = getattr(conn, attr)
977 setattr(self, attr, obj)
978 def send(self, obj):
979 s = self._dumps(obj)
980 self._conn.send_bytes(s)
981 def recv(self):
982 s = self._conn.recv_bytes()
983 return self._loads(s)

Callers

nothing calls this directly

Calls 1

send_bytesMethod · 0.45

Tested by

no test coverage detected