diff options
author | Yury Selivanov <yury@magic.io> | 2018-01-21 19:56:59 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-21 19:56:59 (GMT) |
commit | a4afcdfa55ddffa4b9ae3b0cf101628c7bff4102 (patch) | |
tree | 61649205a7b3d95fed03f643b66c568aab79be3a /Lib/asyncio/base_events.py | |
parent | fc2f407829d9817ddacccae6944dd0879cfaca24 (diff) | |
download | cpython-a4afcdfa55ddffa4b9ae3b0cf101628c7bff4102.zip cpython-a4afcdfa55ddffa4b9ae3b0cf101628c7bff4102.tar.gz cpython-a4afcdfa55ddffa4b9ae3b0cf101628c7bff4102.tar.bz2 |
bpo-32314: Fix asyncio.run() to cancel runinng tasks on shutdown (#5262)
Diffstat (limited to 'Lib/asyncio/base_events.py')
-rw-r--r-- | Lib/asyncio/base_events.py | 25 |
1 files changed, 10 insertions, 15 deletions
diff --git a/Lib/asyncio/base_events.py b/Lib/asyncio/base_events.py index a10e706..ca9eee7 100644 --- a/Lib/asyncio/base_events.py +++ b/Lib/asyncio/base_events.py @@ -228,14 +228,9 @@ class BaseEventLoop(events.AbstractEventLoop): self._coroutine_origin_tracking_enabled = False self._coroutine_origin_tracking_saved_depth = None - if hasattr(sys, 'get_asyncgen_hooks'): - # Python >= 3.6 - # A weak set of all asynchronous generators that are - # being iterated by the loop. - self._asyncgens = weakref.WeakSet() - else: - self._asyncgens = None - + # A weak set of all asynchronous generators that are + # being iterated by the loop. + self._asyncgens = weakref.WeakSet() # Set to True when `loop.shutdown_asyncgens` is called. self._asyncgens_shutdown_called = False @@ -354,7 +349,7 @@ class BaseEventLoop(events.AbstractEventLoop): """Shutdown all active asynchronous generators.""" self._asyncgens_shutdown_called = True - if self._asyncgens is None or not len(self._asyncgens): + if not len(self._asyncgens): # If Python version is <3.6 or we don't have any asynchronous # generators alive. return @@ -386,10 +381,10 @@ class BaseEventLoop(events.AbstractEventLoop): 'Cannot run the event loop while another loop is running') self._set_coroutine_origin_tracking(self._debug) self._thread_id = threading.get_ident() - if self._asyncgens is not None: - old_agen_hooks = sys.get_asyncgen_hooks() - sys.set_asyncgen_hooks(firstiter=self._asyncgen_firstiter_hook, - finalizer=self._asyncgen_finalizer_hook) + + old_agen_hooks = sys.get_asyncgen_hooks() + sys.set_asyncgen_hooks(firstiter=self._asyncgen_firstiter_hook, + finalizer=self._asyncgen_finalizer_hook) try: events._set_running_loop(self) while True: @@ -401,8 +396,7 @@ class BaseEventLoop(events.AbstractEventLoop): self._thread_id = None events._set_running_loop(None) self._set_coroutine_origin_tracking(False) - if self._asyncgens is not None: - sys.set_asyncgen_hooks(*old_agen_hooks) + sys.set_asyncgen_hooks(*old_agen_hooks) def run_until_complete(self, future): """Run until the Future is done. @@ -1374,6 +1368,7 @@ class BaseEventLoop(events.AbstractEventLoop): - 'message': Error message; - 'exception' (optional): Exception object; - 'future' (optional): Future instance; + - 'task' (optional): Task instance; - 'handle' (optional): Handle instance; - 'protocol' (optional): Protocol instance; - 'transport' (optional): Transport instance; |