summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.9.rst
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2019-11-06 03:21:29 (GMT)
committerGitHub <noreply@github.com>2019-11-06 03:21:29 (GMT)
commit6c4c45efaeb40f4f837570f57d90a0b3429c6ae9 (patch)
tree4abd982b8454d295f7f0c16c2ab0ab94014ce584 /Doc/whatsnew/3.9.rst
parent56698d57691af2272f695f8c17c835ed99545cde (diff)
downloadcpython-6c4c45efaeb40f4f837570f57d90a0b3429c6ae9.zip
cpython-6c4c45efaeb40f4f837570f57d90a0b3429c6ae9.tar.gz
cpython-6c4c45efaeb40f4f837570f57d90a0b3429c6ae9.tar.bz2
bpo-38692: Add os.pidfd_open. (GH-17063)
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 3cac9c5..7e77805 100644
--- a/Doc/whatsnew/3.9.rst
+++ b/Doc/whatsnew/3.9.rst
@@ -150,6 +150,9 @@ os
Added :data:`~os.CLD_KILLED` and :data:`~os.CLD_STOPPED` for :attr:`si_code`.
(Contributed by Dong-hee Na in :issue:`38493`.)
+Exposed the Linux-specific :func:`os.pidfd_open` for process management with
+file descriptors. (:issue:`38692`)
+
threading
---------