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

Method connect

Lib/multiprocessing/managers.py:530–537  ·  view source on GitHub ↗

Connect manager object to the server process

(self)

Source from the content-addressed store, hash-verified

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

Callers 2

SocketClientFunction · 0.45

Calls 2

ClientFunction · 0.70
dispatchFunction · 0.70

Tested by

no test coverage detected