Christian Heimes <li...@cheimes.de> added the comment:

In general threads and forks don't mix well. If you fork from any thread but 
the main thread, you can run into undefined behavior. Daemon threads are a 
special property of Python's threading model. You need to have one non-daemon 
thread running to keep the process active. A Python process exits when all 
remaining threads are daemon threads.

----------
nosy: +christian.heimes

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue35902>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to