diff options
Diffstat (limited to 'Lib/threading.py')
-rw-r--r-- | Lib/threading.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/threading.py b/Lib/threading.py index 69b7763..58ffa7e 100644 --- a/Lib/threading.py +++ b/Lib/threading.py @@ -1007,6 +1007,9 @@ class _DummyThread(Thread): def _set_daemon(self): return True + def _stop(self): + pass + def join(self, timeout=None): assert False, "cannot join a dummy thread" |