summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio/windows_events.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-01-29 23:16:14 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2015-01-29 23:16:14 (GMT)
commit1241ecc21bbb3f86734a3071b93514a12dd1ee23 (patch)
treeeaa29f2f14fb1018204206d8b2cf0d4ec8cbd465 /Lib/asyncio/windows_events.py
parent0698638d797ca864f069d828dd2ea6d55b87a04e (diff)
downloadcpython-1241ecc21bbb3f86734a3071b93514a12dd1ee23.zip
cpython-1241ecc21bbb3f86734a3071b93514a12dd1ee23.tar.gz
cpython-1241ecc21bbb3f86734a3071b93514a12dd1ee23.tar.bz2
Issue #23347, asyncio: Make BaseSubprocessTransport.wait() private
Diffstat (limited to 'Lib/asyncio/windows_events.py')
-rw-r--r--Lib/asyncio/windows_events.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncio/windows_events.py b/Lib/asyncio/windows_events.py
index 437eb0a..c4bffc4 100644
--- a/Lib/asyncio/windows_events.py
+++ b/Lib/asyncio/windows_events.py
@@ -375,7 +375,7 @@ class ProactorEventLoop(proactor_events.BaseProactorEventLoop):
yield from waiter
except:
transp.close()
- yield from transp.wait()
+ yield from transp._wait()
raise
return transp