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

Method _debug_info

Lib/multiprocessing/managers.py:626–634  ·  view source on GitHub ↗

Return some info about the servers shared objects and connections

(self)

Source from the content-addressed store, hash-verified

624 self._process = None
625
626 def _debug_info(self):
627 '''
628 Return some info about the servers shared objects and connections
629 '''
630 conn = self._Client(self._address, authkey=self._authkey)
631 try:
632 return dispatch(conn, None, 'debug_info')
633 finally:
634 conn.close()
635
636 def _number_of_objects(self):
637 '''

Callers 1

tearDownClassMethod · 0.80

Calls 2

dispatchFunction · 0.70
closeMethod · 0.45

Tested by 1

tearDownClassMethod · 0.64