Issue #23347, asyncio: Make BaseSubprocessTransport.wait() private

This commit is contained in:
Victor Stinner 2015-01-30 00:16:14 +01:00
parent 0698638d79
commit 1241ecc21b
4 changed files with 4 additions and 4 deletions

View file

@ -115,7 +115,7 @@ class Process:
"""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)