summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.9.rst
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2019-11-14 03:08:50 (GMT)
committerGitHub <noreply@github.com>2019-11-14 03:08:50 (GMT)
commit3ccdd9b180f9a3f29c8ddc8ad1b331fe8df26519 (patch)
tree9353e254fbb988e8325a99269dee89af50cbd74f /Doc/whatsnew/3.9.rst
parentdad6be5ffe48beb74fad78cf758b886afddc7aed (diff)
downloadcpython-3ccdd9b180f9a3f29c8ddc8ad1b331fe8df26519.zip
cpython-3ccdd9b180f9a3f29c8ddc8ad1b331fe8df26519.tar.gz
cpython-3ccdd9b180f9a3f29c8ddc8ad1b331fe8df26519.tar.bz2
closes bpo-38692: Add a pidfd child process watcher to asyncio. (GH-17069)
Diffstat (limited to 'Doc/whatsnew/3.9.rst')
-rw-r--r--Doc/whatsnew/3.9.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst
index 1cd21c6..b1beb0b 100644
--- a/Doc/whatsnew/3.9.rst
+++ b/Doc/whatsnew/3.9.rst
@@ -130,6 +130,9 @@ that schedules a shutdown for the default executor that waits on the
:func:`asyncio.run` has been updated to use the new :term:`coroutine`.
(Contributed by Kyle Stanley in :issue:`34037`.)
+Added :class:`asyncio.PidfdChildWatcher`, a Linux-specific child watcher
+implementation that polls process file descriptors. (:issue:`38692`)
+
curses
------