Commit dc73a500 authored by Fred Drake's avatar Fred Drake

Clarify the default setting for daemon_threads.

parent 648aa0ec
...@@ -43,7 +43,9 @@ to behave on an abrupt shutdown. The \class{ThreadingMixIn} class ...@@ -43,7 +43,9 @@ to behave on an abrupt shutdown. The \class{ThreadingMixIn} class
defines an attribute \var{daemon_threads}, which indicates whether defines an attribute \var{daemon_threads}, which indicates whether
or not the server should wait for thread termination. You should or not the server should wait for thread termination. You should
set the flag explicitly if you would like threads to behave set the flag explicitly if you would like threads to behave
autonomously. autonomously; the default is \constant{False}, meaning that Python
will not exit until all threads created by \class{ThreadingMixIn} have
exited.
Server classes have the same external methods and attributes, no Server classes have the same external methods and attributes, no
matter what network protocol they use: matter what network protocol they use:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment