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

This commit is contained in:
Neal Norwitz 2002-02-19 03:01:36 +00:00
parent ba902fda3c
commit 45bec8c7fc

View File

@ -572,7 +572,7 @@ class _DummyThread(Thread):
def _set_daemon(self):
return 1
def join(self):
def join(self, timeout=None):
assert 0, "cannot join a dummy thread"