This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author steve21
Recipients georg.brandl, steve21
Date 2009-01-22.09:26:27
SpamBayes Score 4.40339e-07
Marked as misclassified No
Message-id <1232616390.21.0.0351753883552.issue5031@psf.upfronthosting.co.za>
In-reply-to
Content
In the threading module the Thread.daemon documentation says:

"The thread’s daemon flag. This must be set before start() is called,
otherwise RuntimeError is raised.

    The initial value is inherited from the creating thread.

    The entire Python program exits when no alive non-daemon threads are
left."

I think the docs should state Thread.daemon's type (boolean, or integer,
or something else?) and its default value (when you have not set .daemon
in the creating thread.)
History
Date User Action Args
2009-01-22 09:26:30steve21setrecipients: + steve21, georg.brandl
2009-01-22 09:26:30steve21setmessageid: <1232616390.21.0.0351753883552.issue5031@psf.upfronthosting.co.za>
2009-01-22 09:26:28steve21linkissue5031 messages
2009-01-22 09:26:27steve21create