From 01234a6127ef0c60607a98189c48317722a99b36 Mon Sep 17 00:00:00 2001 From: aeros Date: Thu, 14 Nov 2019 21:12:10 -0500 Subject: [PATCH] Add asyncio.PidfdChildWatcher to __all__ --- Lib/asyncio/unix_events.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/asyncio/unix_events.py b/Lib/asyncio/unix_events.py index d02460c0043766..66213728a3dcb2 100644 --- a/Lib/asyncio/unix_events.py +++ b/Lib/asyncio/unix_events.py @@ -29,7 +29,7 @@ __all__ = ( 'SelectorEventLoop', 'AbstractChildWatcher', 'SafeChildWatcher', - 'FastChildWatcher', + 'FastChildWatcher', 'PidfdChildWatcher', 'MultiLoopChildWatcher', 'ThreadedChildWatcher', 'DefaultEventLoopPolicy', )