Re: [python-tulip] await process.wait() hangs forever on process created with a new_event_loop

2015-08-10 Thread Victor Stinner
To me it looks wrong to have two event loops per thread. You must get an error, at least in debug mode. What do you want to do? Victor

Re: [python-tulip] await process.wait() hangs forever on process created with a new_event_loop

2015-08-09 Thread Guido van Rossum
Wait, why isn't that just a bug that wait() doesn't know the associated loop? It seems the child watcher is only associated with the loop on set_event_loop(), which in your example doesn't get called (and it shouldn't need to be called). I've reproduced your bug; please file a bug per Victor's