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

Method connect

Lib/multiprocessing/managers.py:529–536  ·  view source on GitHub ↗

Connect manager object to the server process

(self)

Source from the content-addressed store, hash-verified

527 self._authkey, self._serializer)
528
529 def connect(self):
530 '''
531 Connect manager object to the server process
532 '''
533 Listener, Client = listener_client[self._serializer]
534 conn = Client(self._address, authkey=self._authkey)
535 dispatch(conn, None, 'dummy')
536 self._state.value = State.STARTED
537
538 def start(self, initializer=None, initargs=()):
539 '''

Callers 2

SocketClientFunction · 0.45

Calls 2

ClientFunction · 0.70
dispatchFunction · 0.70

Tested by

no test coverage detected