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

@ -188,7 +188,7 @@ class _UnixSelectorEventLoop(selector_events.BaseSelectorEventLoop):
yield from waiter
except:
transp.close()
yield from transp.wait()
yield from transp._wait()
raise
return transp