summaryrefslogtreecommitdiffstats
path: root/Misc
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 /Misc
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 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2019-11-05-21-22-22.bpo-38713.bmhquU.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-11-05-21-22-22.bpo-38713.bmhquU.rst b/Misc/NEWS.d/next/Library/2019-11-05-21-22-22.bpo-38713.bmhquU.rst
new file mode 100644
index 0000000..a227197
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-11-05-21-22-22.bpo-38713.bmhquU.rst
@@ -0,0 +1,2 @@
+Add :data:`os.P_PIDFD` constant, which may be passed to :func:`os.waitid` to
+wait on a Linux process file descriptor.