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 pitrou
Recipients neologix, pitrou, sbt, vstinner
Date 2012-04-24.23:34:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1335310459.24.0.102431082627.issue14666@psf.upfronthosting.co.za>
In-reply-to
Content
Ah, this is because of the new daemon thread in ResourceSharer. That thread is never stopped and could receive signals while tests expect them to be delivered to the main thread.

Either we add a (private?) facility to stop that thread, or we block signal delivery in that thread using the signal module's pthread_sigmask. What do you think?
History
Date User Action Args
2012-04-24 23:34:19pitrousetrecipients: + pitrou, vstinner, neologix, sbt
2012-04-24 23:34:19pitrousetmessageid: <1335310459.24.0.102431082627.issue14666@psf.upfronthosting.co.za>
2012-04-24 23:34:18pitroulinkissue14666 messages
2012-04-24 23:34:18pitroucreate