summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio/unix_events.py
diff options
context:
space:
mode:
authorKyle Stanley <aeros167@gmail.com>2019-11-15 02:47:56 (GMT)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-11-15 02:47:56 (GMT)
commit3f8cebd32c1e6f20a1a1440e51c308a5f70ca959 (patch)
treec28d22f1a4daa6bd34a776e1d718d857e1e6eef5 /Lib/asyncio/unix_events.py
parent4d231bcc77ac8ce7d11bda0804130dcdd678f710 (diff)
downloadcpython-3f8cebd32c1e6f20a1a1440e51c308a5f70ca959.zip
cpython-3f8cebd32c1e6f20a1a1440e51c308a5f70ca959.tar.gz
cpython-3f8cebd32c1e6f20a1a1440e51c308a5f70ca959.tar.bz2
bpo-38692: Add asyncio.PidfdChildWatcher to __all__ (GH-17161)
/cc @asvetlov @1st1 https://bugs.python.org/issue38692 Automerge-Triggered-By: @benjaminp
Diffstat (limited to 'Lib/asyncio/unix_events.py')
-rw-r--r--Lib/asyncio/unix_events.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncio/unix_events.py b/Lib/asyncio/unix_events.py
index d02460c..6621372 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',
)