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 eric.snow
Recipients eric.snow, methane, mocramis
Date 2019-03-29.18:59:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1553885947.94.0.379897151225.issue36469@roundup.psfhosted.org>
In-reply-to
Content
Here are some things that would likely help:

* in the main thread stop your daemon threads if you hit SystemExit
* make sure daemon threads release/acquire the GIL frequently (so they notice finalization)
* make sure daemon threads otherwise exit promptly (no long running C code)
* stop using daemon threads
* use a newer version of Python (may be fixed there)

I'm going take a look at master to see if it has a similar possible problem with daemon threads and runtime finalization.  If there is then I'll likely open a separate issue (and reference it here).
History
Date User Action Args
2019-03-29 18:59:07eric.snowsetrecipients: + eric.snow, methane, mocramis
2019-03-29 18:59:07eric.snowsetmessageid: <1553885947.94.0.379897151225.issue36469@roundup.psfhosted.org>
2019-03-29 18:59:07eric.snowlinkissue36469 messages
2019-03-29 18:59:07eric.snowcreate