Issue #23456: Add missing @coroutine decorators in asyncio

This commit is contained in:
Victor Stinner 2015-03-18 11:37:42 +01:00
parent d55436ace3
commit d6dc7bdaf9
3 changed files with 5 additions and 0 deletions

View file

@ -211,6 +211,7 @@ class BaseSubprocessTransport(transports.SubprocessTransport):
waiter.set_result(returncode)
self._exit_waiters = None
@coroutine
def _wait(self):
"""Wait until the process exit and return the process return code.