From: Kyle Stanley Date: Fri, 15 Nov 2019 02:47:56 +0000 (-0500) Subject: bpo-38692: Add asyncio.PidfdChildWatcher to __all__ (GH-17161) X-Git-Tag: v3.9.0a1~41 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3f8cebd32c1e6f20a1a1440e51c308a5f70ca959;p=thirdparty%2FPython%2Fcpython.git bpo-38692: Add asyncio.PidfdChildWatcher to __all__ (GH-17161) /cc @asvetlov @1st1 https://bugs.python.org/issue38692 Automerge-Triggered-By: @benjaminp --- diff --git a/Lib/asyncio/unix_events.py b/Lib/asyncio/unix_events.py index d02460c00437..66213728a3dc 100644 --- a/Lib/asyncio/unix_events.py +++ b/Lib/asyncio/unix_events.py @@ -29,7 +29,7 @@ from .log import logger __all__ = ( 'SelectorEventLoop', 'AbstractChildWatcher', 'SafeChildWatcher', - 'FastChildWatcher', + 'FastChildWatcher', 'PidfdChildWatcher', 'MultiLoopChildWatcher', 'ThreadedChildWatcher', 'DefaultEventLoopPolicy', )