(self, group=None, target=None, name=None, args=(), kwargs=None)
| 34 | class 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(): |
nothing calls this directly
no test coverage detected