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 197dec4..8c2cee9 100644 --- a/Lib/threading.py +++ b/Lib/threading.py @@ -871,6 +871,9 @@ class _DummyThread(Thread): with _active_limbo_lock: _active[self._ident] = self + def _stop(self): + pass + def join(self, timeout=None): assert False, "cannot join a dummy thread" |