diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-01-30 00:16:14 +0100 |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-01-30 00:16:14 +0100 |
commit | 1241ecc21bbb3f86734a3071b93514a12dd1ee23 (patch) | |
tree | eaa29f2f14fb1018204206d8b2cf0d4ec8cbd465 /Lib/asyncio/unix_events.py | |
parent | 0698638d797ca864f069d828dd2ea6d55b87a04e (diff) | |
download | cpython-git-1241ecc21bbb3f86734a3071b93514a12dd1ee23.tar.gz |
Issue #23347, asyncio: Make BaseSubprocessTransport.wait() private
Diffstat (limited to 'Lib/asyncio/unix_events.py')
-rw-r--r-- | Lib/asyncio/unix_events.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncio/unix_events.py b/Lib/asyncio/unix_events.py index 3ecdfd2e0b..1fc39abe09 100644 --- a/Lib/asyncio/unix_events.py +++ b/Lib/asyncio/unix_events.py @@ -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 |