waiter.set_result(returncode)
self._exit_waiters = None
- def wait(self):
+ def _wait(self):
"""Wait until the process exit and return the process return code.
This method is a coroutine."""
"""Wait until the process exit and return the process return code.
This method is a coroutine."""
- return (yield from self._transport.wait())
+ return (yield from self._transport._wait())
def send_signal(self, signal):
self._transport.send_signal(signal)