Guido van Rossum added the comment:

Hmm...  That fix works, and if you're concerned about the buildbots, by all 
means check it in.

But I think the root cause is a poor API for initializing ChildWatchers.  This 
is currently done at the end of __init__() -- it calls self.set_loop() which is 
implemented by the subclass.

I think the right fix is to change the protocol to separate out the constructor 
from the set_loop() call (which also isn't a great name, since it does so much 
more -- maybe it can be called link_loop()?).   This is more cumbersome (esp. 
for the tests), but it really rubs me the wrong way that you have to to 
initialize the subclass before initializing the base class.

----------

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

Reply via email to