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

Method __init__

Lib/multiprocessing/dummy/__init__.py:36–41  ·  view source on GitHub ↗
(self, group=None, target=None, name=None, args=(), kwargs=None)

Source from the content-addressed store, hash-verified

34class DummyProcess(threading.Thread):
35
36 def __init__(self, group=None, target=None, name=None, args=(), kwargs=None):
37 threading.Thread.__init__(self, group, target, name, args, kwargs)
38 self._pid = None
39 self._children = weakref.WeakKeyDictionary()
40 self._start_called = False
41 self._parent = current_process()
42
43 def start(self):
44 if self._parent is not current_process():

Callers

nothing calls this directly

Calls 2

current_processFunction · 0.85
__init__Method · 0.45

Tested by

no test coverage detected