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 ncoghlan
Recipients andyshorts, christian.heimes, georg.brandl, ncoghlan, ocean-city
Date 2008-02-24.07:50:21
SpamBayes Score 0.004628977
Marked as misclassified No
Message-id <1203839422.07.0.148907603502.issue1720705@psf.upfronthosting.co.za>
In-reply-to
Content
Correction to previous comment: you can't safely perform imports from
daemon threads at all, as you have to set their daemon status before you
start them.

So, to be able to safely import from a thread other than the main thread:
- it must be created by the threading module, or otherwise guaranteed to
be terminated when the interpreter exits
- if created through the threading module, it must not be set to daemon mode
History
Date User Action Args
2008-02-24 07:50:22ncoghlansetspambayes_score: 0.00462898 -> 0.004628977
recipients: + ncoghlan, georg.brandl, ocean-city, andyshorts, christian.heimes
2008-02-24 07:50:22ncoghlansetspambayes_score: 0.00462898 -> 0.00462898
messageid: <1203839422.07.0.148907603502.issue1720705@psf.upfronthosting.co.za>
2008-02-24 07:50:21ncoghlanlinkissue1720705 messages
2008-02-24 07:50:21ncoghlancreate