diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-02-02 18:36:59 +0100 |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-02-02 18:36:59 +0100 |
commit | 29ae7633e0e41d65e188c522248dcb620b055efc (patch) | |
tree | 5abb7756647b60de3f347437d87c77ba0b8d3e69 /Lib/asyncio/windows_events.py | |
parent | c658d85487142099c1abe8e916c9864f7fc7b7a4 (diff) | |
parent | 5d44c08f1c18583d568283170454bab0c11f8257 (diff) | |
download | cpython-git-29ae7633e0e41d65e188c522248dcb620b055efc.tar.gz |
Merge 3.4 (asyncio)
Diffstat (limited to 'Lib/asyncio/windows_events.py')
-rw-r--r-- | Lib/asyncio/windows_events.py | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/Lib/asyncio/windows_events.py b/Lib/asyncio/windows_events.py index c4bffc4734..f311e46315 100644 --- a/Lib/asyncio/windows_events.py +++ b/Lib/asyncio/windows_events.py @@ -373,10 +373,17 @@ class ProactorEventLoop(proactor_events.BaseProactorEventLoop): **kwargs) try: yield from waiter - except: + except Exception as exc: + # Workaround CPython bug #23353: using yield/yield-from in an + # except block of a generator doesn't clear properly sys.exc_info() + err = exc + else: + err = None + + if err is not None: transp.close() yield from transp._wait() - raise + raise err return transp |