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 christian.heimes
Recipients christian.heimes, vtsozik
Date 2019-02-05.22:31:27
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1549405887.11.0.464461197658.issue35902@roundup.psfhosted.org>
In-reply-to
Content
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.
History
Date User Action Args
2019-02-05 22:31:29christian.heimessetrecipients: + christian.heimes, vtsozik
2019-02-05 22:31:27christian.heimessetmessageid: <1549405887.11.0.464461197658.issue35902@roundup.psfhosted.org>
2019-02-05 22:31:27christian.heimeslinkissue35902 messages
2019-02-05 22:31:27christian.heimescreate