]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-38692: Add asyncio.PidfdChildWatcher to __all__ (GH-17161)
authorKyle Stanley <aeros167@gmail.com>
Fri, 15 Nov 2019 02:47:56 +0000 (21:47 -0500)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Fri, 15 Nov 2019 02:47:56 +0000 (18:47 -0800)
/cc @asvetlov @1st1

https://bugs.python.org/issue38692

Automerge-Triggered-By: @benjaminp
Lib/asyncio/unix_events.py

index d02460c00437666538729ea305084efba6f5fd13..66213728a3dcb29f1733604041c64894f0a83a96 100644 (file)
@@ -29,7 +29,7 @@ from .log import logger
 __all__ = (
     'SelectorEventLoop',
     'AbstractChildWatcher', 'SafeChildWatcher',
-    'FastChildWatcher',
+    'FastChildWatcher', 'PidfdChildWatcher',
     'MultiLoopChildWatcher', 'ThreadedChildWatcher',
     'DefaultEventLoopPolicy',
 )