Commit 45bec8c7 authored by Neal Norwitz's avatar Neal Norwitz

SF #515023. Make _DummyThread.join() signature match base class (Thread)

parent ba902fda
...@@ -572,7 +572,7 @@ class _DummyThread(Thread): ...@@ -572,7 +572,7 @@ class _DummyThread(Thread):
def _set_daemon(self): def _set_daemon(self):
return 1 return 1
def join(self): def join(self, timeout=None):
assert 0, "cannot join a dummy thread" assert 0, "cannot join a dummy thread"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment