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, skydoom, zach.ware
Date 2016-04-07.17:55:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1460051706.01.0.474388417893.issue26693@psf.upfronthosting.co.za>
In-reply-to
Content
It looks like there is a bug in the _shutdown function of threading.py, that it does not check whether the _main_thread.is_alive() or not.  My temporary fix is to add the following checking in the beginning of _shutdown and it seems no more error message pop up:

if( _main_thread.is_active() is False ):
  return

Please see if this makes sense.
History
Date User Action Args
2016-04-07 17:55:06skydoomsetrecipients: + skydoom, martin.panter, zach.ware
2016-04-07 17:55:06skydoomsetmessageid: <1460051706.01.0.474388417893.issue26693@psf.upfronthosting.co.za>
2016-04-07 17:55:05skydoomlinkissue26693 messages
2016-04-07 17:55:05skydoomcreate