Antoine Pitrou added the comment:

Multi-inheritance is tricky to get right, both for the class being extended and 
the class extending it.  The APIs mentioned here were never designed for 
multiple inheritance and aren't supposed to support it.

Your use case would probably be better served by using composition rather than 
inheritance.  Speaking personally, I almost never subclass Thread, instead I 
make it an attribute of whatever class I'm writing.

----------
nosy: +pitrou

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

Reply via email to