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

Method run

Lib/multiprocessing/process.py:103–108  ·  view source on GitHub ↗

Method to be run in sub-process; can be overridden in sub-class

(self)

Source from the content-addressed store, hash-verified

101 raise ValueError("process object is closed")
102
103 def run(self):
104 '''
105 Method to be run in sub-process; can be overridden in sub-class
106 '''
107 if self._target:
108 self._target(*self._args, **self._kwargs)
109
110 def start(self):
111 '''

Callers 1

_bootstrapMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected