Issue #14881: Allow normal non-main thread to spawn a dummy process

Fix suggested by Itay Brandes
This commit is contained in:
Richard Oudkerk 2012-05-25 12:57:58 +01:00
parent 2cc7156515
commit 54454e7dc2

View file

@ -70,7 +70,8 @@ def __init__(self, group=None, target=None, name=None, args=(), kwargs={}):
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