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

Method send

Lib/multiprocessing/connection.py:202–206  ·  view source on GitHub ↗

Send a (picklable) object

(self, obj)

Source from the content-addressed store, hash-verified

200 self._send_bytes(m[offset:offset + size])
201
202 def send(self, obj):
203 """Send a (picklable) object"""
204 self._check_closed()
205 self._check_writable()
206 self._send_bytes(_ForkingPickler.dumps(obj))
207
208 def recv_bytes(self, maxlength=None):
209 """

Callers

nothing calls this directly

Calls 4

_check_closedMethod · 0.95
_check_writableMethod · 0.95
_send_bytesMethod · 0.45
dumpsMethod · 0.45

Tested by

no test coverage detected