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 flox
Recipients flox
Date 2011-10-09.20:18:44
SpamBayes Score 0.00040569424
Marked as misclassified No
Message-id <1318191525.3.0.322601594247.issue13140@psf.upfronthosting.co.za>
In-reply-to
Content
I use the socketserver.ThreadingMixIn to create a TCPServer.

I set the server thread as daemon (t.daemon=True).
But I want the client threads to run as non-daemon.
According to the documentation, the "daemon_threads" class attribute should do the trick.

But it fails: if server is daemon, the clients are daemon too, even if daemon_threads=False.

Demo attached.
History
Date User Action Args
2011-10-09 20:18:45floxsetrecipients: + flox
2011-10-09 20:18:45floxsetmessageid: <1318191525.3.0.322601594247.issue13140@psf.upfronthosting.co.za>
2011-10-09 20:18:44floxlinkissue13140 messages
2011-10-09 20:18:44floxcreate