[issue28890] logging.handlers: Document that QueueListener is a daemon thread

2019-06-21 Thread Vinay Sajip
Change by Vinay Sajip : -- stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue28890] logging.handlers: Document that QueueListener is a daemon thread

2019-06-21 Thread Julien Castiaux
Julien Castiaux added the comment: Hello, The purpose of the QueueListener is to provide a way to get messages sent by QueueHandlers. I was starting the QueueListener in is own mp.Process and was expecting the start() to hang. As it was not, the process was exiting logging a few messages or

[issue28890] logging.handlers: Document that QueueListener is a daemon thread

2019-06-19 Thread Vinay Sajip
New submission from Vinay Sajip : Why does that particularly need documenting? If it were a non-daemon thread, that might need documenting as the program would have to join() it or else seem to hang, but what does it matter if it's a daemon thread? --

[issue28890] logging.handlers: Document that QueueListener is a daemon thread

2019-01-23 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +vinay.sajip, xtreak versions: +Python 3.7, Python 3.8 -Python 3.5 ___ Python tracker ___

[issue28890] logging.handlers: Document that QueueListener is a daemon thread

2016-12-06 Thread Julien Castiaux
Changes by Julien Castiaux : -- assignee: docs@python components: Documentation nosy: Julien Castiaux, docs@python priority: normal severity: normal status: open title: logging.handlers: Document that QueueListener is a daemon thread type: enhancement versions: Python 3.5 __