summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2019-11-06 05:58:31 (GMT)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-11-06 05:58:31 (GMT)
commit5c0c325453a175350e3c18ebb10cc10c37f9595c (patch)
treefb7bdfa2f63154fe28d31b015d44d409786e1132 /Doc/whatsnew
parent6c4c45efaeb40f4f837570f57d90a0b3429c6ae9 (diff)
downloadcpython-5c0c325453a175350e3c18ebb10cc10c37f9595c.zip
cpython-5c0c325453a175350e3c18ebb10cc10c37f9595c.tar.gz
cpython-5c0c325453a175350e3c18ebb10cc10c37f9595c.tar.bz2
closes bpo-38713: Expose P_PIDFD in os if it's defined. (GH-17071)
https://bugs.python.org/issue38713
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.9.rst5
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst
index 7e77805..1cd21c6 100644
--- a/Doc/whatsnew/3.9.rst
+++ b/Doc/whatsnew/3.9.rst
@@ -150,8 +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`)
+Exposed the Linux-specific :func:`os.pidfd_open` (:issue:`38692`) and
+:data:`os.P_PIDFD` (:issue:`38713`) for process management with file
+descriptors.
threading
---------