[Python-checkins] bpo-38692: Add asyncio.PidfdChildWatcher to __all__ (GH-17161)

Miss Islington (bot) webhook-mailer at python.org
Thu Nov 14 21:48:09 EST 2019


https://github.com/python/cpython/commit/3f8cebd32c1e6f20a1a1440e51c308a5f70ca959
commit: 3f8cebd32c1e6f20a1a1440e51c308a5f70ca959
branch: master
author: Kyle Stanley <aeros167 at gmail.com>
committer: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
date: 2019-11-14T18:47:56-08:00
summary:

bpo-38692: Add asyncio.PidfdChildWatcher to __all__ (GH-17161)



/cc @asvetlov @1st1 


https://bugs.python.org/issue38692



Automerge-Triggered-By: @benjaminp

files:
M Lib/asyncio/unix_events.py

diff --git a/Lib/asyncio/unix_events.py b/Lib/asyncio/unix_events.py
index d02460c004376..66213728a3dcb 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',
 )



More information about the Python-checkins mailing list