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 skydoom
Recipients martin.panter, pitrou, skydoom, zach.ware
Date 2016-04-13.18:46:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1460573200.49.0.961730437852.issue26693@psf.upfronthosting.co.za>
In-reply-to
Content
seems we also need to check whether _main_thread is daemon thread or not, so the proposed patch would look like:

def _shutdown():
   # add these checking first
   if( _main_thread.isDaemon() is False or _main_thread.is_alive() is False ):
       return
History
Date User Action Args
2016-04-13 18:46:40skydoomsetrecipients: + skydoom, pitrou, martin.panter, zach.ware
2016-04-13 18:46:40skydoomsetmessageid: <1460573200.49.0.961730437852.issue26693@psf.upfronthosting.co.za>
2016-04-13 18:46:40skydoomlinkissue26693 messages
2016-04-13 18:46:40skydoomcreate