mirror of
https://github.com/python/cpython.git
synced 2025-09-30 12:21:51 +00:00
[3.6] call remove_done_callback in finally section (GH-1688) (#1755)
(cherry picked from commit 21b3e04c13
)
This commit is contained in:
parent
762add7877
commit
70705e3cdf
1 changed files with 2 additions and 1 deletions
|
@ -459,6 +459,7 @@ class BaseEventLoop(events.AbstractEventLoop):
|
||||||
# local task.
|
# local task.
|
||||||
future.exception()
|
future.exception()
|
||||||
raise
|
raise
|
||||||
|
finally:
|
||||||
future.remove_done_callback(_run_until_complete_cb)
|
future.remove_done_callback(_run_until_complete_cb)
|
||||||
if not future.done():
|
if not future.done():
|
||||||
raise RuntimeError('Event loop stopped before Future completed.')
|
raise RuntimeError('Event loop stopped before Future completed.')
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue