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

Method send

Lib/multiprocessing/managers.py:1053–1054  ·  view source on GitHub ↗
(self, *args)

Source from the content-addressed store, hash-verified

1051 def __next__(self, *args):
1052 return self._callmethod('__next__', args)
1053 def send(self, *args):
1054 return self._callmethod('send', args)
1055 def throw(self, *args):
1056 return self._callmethod('throw', args)
1057 def close(self, *args):

Callers 6

dispatchFunction · 0.45
_handle_requestMethod · 0.45
shutdownMethod · 0.45
accept_connectionMethod · 0.45
_run_serverMethod · 0.45
_callmethodMethod · 0.45

Calls 1

_callmethodMethod · 0.80

Tested by

no test coverage detected