summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorKumar Aditya <59607654+kumaraditya303@users.noreply.github.com>2022-05-31 10:51:29 (GMT)
committerGitHub <noreply@github.com>2022-05-31 10:51:29 (GMT)
commita565ab0fd58bcd4bbc01084b74ef704a75084274 (patch)
tree72172e26ce2a00740a192868525a35e82dd372ef /Misc/NEWS.d
parentf545fc955aeb701ae4e73b07ff2283f823d857b8 (diff)
downloadcpython-a565ab0fd58bcd4bbc01084b74ef704a75084274.zip
cpython-a565ab0fd58bcd4bbc01084b74ef704a75084274.tar.gz
cpython-a565ab0fd58bcd4bbc01084b74ef704a75084274.tar.bz2
GH-93312: Add os.PIDFD_NONBLOCK flag (#93313)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Library/2022-05-28-08-02-55.gh-issue-93312.HY0Uzj.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-05-28-08-02-55.gh-issue-93312.HY0Uzj.rst b/Misc/NEWS.d/next/Library/2022-05-28-08-02-55.gh-issue-93312.HY0Uzj.rst
new file mode 100644
index 0000000..f11d04f
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2022-05-28-08-02-55.gh-issue-93312.HY0Uzj.rst
@@ -0,0 +1,3 @@
+Add :data:`os.PIDFD_NONBLOCK` flag to open a file descriptor
+for a process with :func:`os.pidfd_open` in non-blocking mode.
+Patch by Kumar Aditya.