We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1c6e91 commit 3e9d303Copy full SHA for 3e9d303
1 file changed
Doc/whatsnew/3.15.rst
@@ -743,9 +743,9 @@ subprocess
743
platform supports it, an efficient event-driven mechanism is used to wait for
744
process termination:
745
746
- - Linux ≥= 5.3 uses :func:`os.pidfd_open` + :func:`select.poll`
747
- - macOS and other BSD variants use :func:`select.kqueue` + ``KQ_FILTER_PROC`` + ``KQ_NOTE_EXIT``
748
- - Windows keeps using ``WaitForSingleObject`` (unchanged)
+ - Linux ≥= 5.3 uses :func:`os.pidfd_open` + :func:`select.poll`.
+ - macOS and other BSD variants use :func:`select.kqueue` + ``KQ_FILTER_PROC`` + ``KQ_NOTE_EXIT``.
+ - Windows keeps using ``WaitForSingleObject`` (unchanged).
749
750
If none of these mechanisms are available, the function falls back to the
751
traditional busy loop (non-blocking call and short sleeps).
0 commit comments