We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e91ff9 commit 6f3d2daCopy full SHA for 6f3d2da
Doc/library/threading.rst
@@ -311,7 +311,7 @@ If the :meth:`~Thread.run` method raises an exception,
311
:func:`threading.excepthook` ignores silently :exc:`SystemExit`.
312
313
A thread can be flagged as a "daemon thread". A thread with this flag is shut
314
-down when the main thread and all others non-daemon threads end.
+down when the main thread and all other non-daemon threads end.
315
This means a Python program runs as long as non-daemon threads (such as the main
316
thread) are running, and exits when only daemon threads are left. The
317
initial value is inherited from the creating thread. The flag can be set
0 commit comments