diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2023-12-30 15:19:47 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-30 15:19:47 (GMT) |
commit | f48a1bcb2914addee971814fd014e4d8075ea6a9 (patch) | |
tree | 4d5b26881c822480cac2dc3a4b32c9b7e017d9ac | |
parent | 88cb9720001295f82c7771ab4ebf20f3cd0b31fb (diff) | |
download | cpython-f48a1bcb2914addee971814fd014e4d8075ea6a9.zip cpython-f48a1bcb2914addee971814fd014e4d8075ea6a9.tar.gz cpython-f48a1bcb2914addee971814fd014e4d8075ea6a9.tar.bz2 |
gh-89414: Document that SIGCLD is not available on macOS (#113580)
Document that SIGCLD is not available on macOS
-rw-r--r-- | Doc/library/signal.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/library/signal.rst b/Doc/library/signal.rst index 7ee5ece..85a073a 100644 --- a/Doc/library/signal.rst +++ b/Doc/library/signal.rst @@ -157,6 +157,8 @@ The variables defined in the :mod:`signal` module are: Alias to :data:`SIGCHLD`. + .. availability:: not macOS. + .. data:: SIGCONT Continue the process if it is currently stopped |