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 tim.peters
Recipients
Date 2003-08-29.17:26:45
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=31435

Yes, blocking on exit is by design.  Quoting the docs (always 
the last place to look <wink>):  "The entire Python program 
exits when no active non-daemon threads are left.".  If you 
don't want exit to wait for a specific thread T to stop, call 
T.isDaemon(True) *before* calling T.start().
History
Date User Action Args
2007-08-23 14:16:18adminlinkissue793687 messages
2007-08-23 14:16:18admincreate