diff options
Diffstat (limited to 'Lib/asyncio/windows_events.py')
-rw-r--r-- | Lib/asyncio/windows_events.py | 2 |
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 |