skydoom added the comment:

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.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26693>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to