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

Class Process

Lib/multiprocessing/context.py:229–237  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

227#
228
229class Process(process.BaseProcess):
230 _start_method = None
231 @staticmethod
232 def _Popen(process_obj):
233 return _default_context.get_context().Process._Popen(process_obj)
234
235 @staticmethod
236 def _after_fork():
237 return _default_context.get_context().Process._after_fork()
238
239class DefaultContext(BaseContext):
240 Process = Process

Callers 3

testFunction · 0.90
ProcessMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…