diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-01-30 00:16:31 +0100 |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-01-30 00:16:31 +0100 |
commit | 49b74d1a91e3bcfe26c34e12b209b460fda8354c (patch) | |
tree | d8bfc3b90093e79ed3eb77b14cce03bf994555ad /Lib/asyncio/unix_events.py | |
parent | 698a9bd3ba2a01664000668433254ddbb7b52c3f (diff) | |
parent | 1241ecc21bbb3f86734a3071b93514a12dd1ee23 (diff) | |
download | cpython-git-49b74d1a91e3bcfe26c34e12b209b460fda8354c.tar.gz |
Merge 3.4 (asyncio)
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 |