summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKyle Stanley <aeros167@gmail.com>2020-04-21 20:50:51 (GMT)
committerGitHub <noreply@github.com>2020-04-21 20:50:51 (GMT)
commit9c82ea7868a1c5ecf88891c627b5c399357eb05e (patch)
tree177bd5f1c2c8b6e35ef2e0418b08115c9de0be49
parent11a7f158ef51b0edcde3c3d9215172354e385877 (diff)
downloadcpython-9c82ea7868a1c5ecf88891c627b5c399357eb05e.zip
cpython-9c82ea7868a1c5ecf88891c627b5c399357eb05e.tar.gz
cpython-9c82ea7868a1c5ecf88891c627b5c399357eb05e.tar.bz2
bpo-34037: Add Python API whatsnew for loop.shutdown_default_executor() (#19634)
Co-Authored-By: Victor Stinner <vstinner@python.org>
-rw-r--r--Doc/whatsnew/3.9.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst
index c4b49fe..20ebe92 100644
--- a/Doc/whatsnew/3.9.rst
+++ b/Doc/whatsnew/3.9.rst
@@ -827,6 +827,11 @@ Changes in the Python API
in the object itself.
(Contributed by Serhiy Storchaka in :issue:`40257`.)
+* :meth:`asyncio.loop.shutdown_default_executor` has been added to
+ :class:`~asyncio.AbstractEventLoop`, meaning alternative event loops that
+ inherit from it should have this method defined.
+ (Contributed by Kyle Stanley in :issue:`34037`.)
+
CPython bytecode changes
------------------------