Skip to content

Commit b4f6020

Browse files
committed
Remove weird unicode char from doc added by accident
1 parent a44b2d7 commit b4f6020

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`` and the platform supports it, an
807807
efficient event-driven mechanism is used to wait for process termination:
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
@@ -743,7 +743,7 @@ subprocess
743743
platform supports it, an efficient event-driven mechanism is used to wait for
744744
process termination:
745745

746-
- Linux = 5.3 uses :func:`os.pidfd_open` + :func:`select.poll`.
746+
- Linux >= 5.3 uses :func:`os.pidfd_open` + :func:`select.poll`.
747747
- macOS and other BSD variants use :func:`select.kqueue` + ``KQ_FILTER_PROC`` + ``KQ_NOTE_EXIT``.
748748
- Windows keeps using ``WaitForSingleObject`` (unchanged).
749749

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,6 +1,6 @@
11
:meth:`subprocess.Popen.wait`: when ``timeout`` is not ``None``, an efficient
22
event-driven mechanism now waits for process termination, if available. Linux
3-
= 5.3 uses :func:`os.pidfd_open` + :func:`select.poll`. macOS and other BSD
3+
>= 5.3 uses :func:`os.pidfd_open` + :func:`select.poll`. macOS and other BSD
44
variants use :func:`select.kqueue` + ``KQ_FILTER_PROC`` + ``KQ_NOTE_EXIT``.
55
Windows keeps using ``WaitForSingleObject`` (unchanged). If none of these
66
mechanisms are available, the function falls back to the traditional busy loop

0 commit comments

Comments
 (0)