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

Method send

Lib/multiprocessing/resource_sharer.py:49–50  ·  view source on GitHub ↗
(conn, pid)

Source from the content-addressed store, hash-verified

47 def __init__(self, fd):
48 new_fd = os.dup(fd)
49 def send(conn, pid):
50 reduction.send_handle(conn, new_fd, pid)
51 def close():
52 os.close(new_fd)
53 self._id = _resource_sharer.register(send, close)

Callers 4

send_handleFunction · 0.45
recvfdsFunction · 0.45
get_connectionMethod · 0.45
stopMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected