mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Merge
This commit is contained in:
commit
be39cfc9dc
1 changed files with 2 additions and 1 deletions
|
@ -68,7 +68,8 @@ class DummyProcess(threading.Thread):
|
|||
def start(self):
|
||||
assert self._parent is current_process()
|
||||
self._start_called = True
|
||||
self._parent._children[self] = None
|
||||
if hasattr(self._parent, '_children'):
|
||||
self._parent._children[self] = None
|
||||
threading.Thread.start(self)
|
||||
|
||||
@property
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue