From: Kyle Stanley Date: Tue, 21 Apr 2020 20:50:51 +0000 (-0400) Subject: bpo-34037: Add Python API whatsnew for loop.shutdown_default_executor() (#19634) X-Git-Tag: v3.9.0a6~55 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9c82ea7868a1c5ecf88891c627b5c399357eb05e;p=thirdparty%2FPython%2Fcpython.git bpo-34037: Add Python API whatsnew for loop.shutdown_default_executor() (#19634) Co-Authored-By: Victor Stinner --- diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst index c4b49feed9fc..20ebe92865a1 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 ------------------------