This commit is contained in:
Richard Oudkerk 2012-05-25 13:04:20 +01:00
commit be39cfc9dc

View file

@ -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