File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff 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 ``
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 11:meth: `subprocess.Popen.wait `: when ``timeout `` is not ``None ``, an efficient
22event-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
44variants use :func: `select.kqueue ` + ``KQ_FILTER_PROC `` + ``KQ_NOTE_EXIT ``.
55Windows keeps using ``WaitForSingleObject `` (unchanged). If none of these
66mechanisms are available, the function falls back to the traditional busy loop
You can’t perform that action at this time.
0 commit comments