diff options
author | Kyle Stanley <aeros167@gmail.com> | 2020-04-21 20:50:51 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-21 20:50:51 (GMT) |
commit | 9c82ea7868a1c5ecf88891c627b5c399357eb05e (patch) | |
tree | 177bd5f1c2c8b6e35ef2e0418b08115c9de0be49 | |
parent | 11a7f158ef51b0edcde3c3d9215172354e385877 (diff) | |
download | cpython-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.rst | 5 |
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 ------------------------ |