Skip to content

Commit b0c9890

Browse files
committed
Fix typo
1 parent 452f8c4 commit b0c9890

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Doc/library/subprocess.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -806,7 +806,7 @@ Instances of the :class:`Popen` class have the following methods:
806806
When ``timeout`` is not ``None``, an efficient event-driven mechanism
807807
waits for process termination when available:
808808

809-
- Linux ≥5.3 uses :func:`os.pidfd_open` + :func:`select.poll`
809+
- Linux ≥= 5.3 uses :func:`os.pidfd_open` + :func:`select.poll`
810810
- macOS and other BSD variants use :func:`select.kqueue` +
811811
``KQ_FILTER_PROC`` + ``KQ_NOTE_EXIT``
812812
- Windows uses ``WaitForSingleObject``

Doc/whatsnew/3.15.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -742,7 +742,7 @@ subprocess
742742
* :meth:`subprocess.Popen.wait`: when ``timeout`` is not ``None``, an efficient
743743
event-driven mechanism now waits for process termination, if available:
744744

745-
- Linux ≥5.3 uses :func:`os.pidfd_open` + :func:`select.poll`
745+
- Linux ≥= 5.3 uses :func:`os.pidfd_open` + :func:`select.poll`
746746
- macOS and other BSD variants use :func:`select.kqueue` + ``KQ_FILTER_PROC``
747747
+ ``KQ_NOTE_EXIT``
748748
- Windows keep using ``WaitForSingleObject`` (unchanged)

Misc/NEWS.d/next/Library/2026-01-19-16-45-16.gh-issue-83069.0TaeH9.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
:meth:`subprocess.Popen.wait`: when ``timeout`` is not ``None``, an efficient
22
event-driven mechanism now waits for process termination, if available:
33

4-
- Linux ≥5.3 uses :func:`os.pidfd_open` + :func:`select.poll`
4+
- Linux ≥= 5.3 uses :func:`os.pidfd_open` + :func:`select.poll`
55
- macOS and other BSD variants use :func:`select.kqueue` + ``KQ_FILTER_PROC`` +
66
``KQ_NOTE_EXIT``
77
- Windows keep using ``WaitForSingleObject`` (unchanged)

0 commit comments

Comments
 (0)