This commit is contained in:
Richard Oudkerk 2012-05-25 13:04:20 +01:00
commit be39cfc9dc
1 changed files with 2 additions and 1 deletions

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