diff --git a/Lib/threading.py b/Lib/threading.py index 7c6d404bcd1..2f6ac7036f5 100644 --- a/Lib/threading.py +++ b/Lib/threading.py @@ -1101,8 +1101,7 @@ def daemon(self): main thread is not a daemon thread and therefore all threads created in the main thread default to daemon = False. - The entire Python program exits when no alive non-daemon threads are - left. + The entire Python program exits when only daemon threads are left. """ assert self._initialized, "Thread.__init__() not called"