diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-11-21 11:22:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-21 11:22:08 (GMT) |
commit | 7e9bf4ec91fdcc884b4469f796d3db7a91c0d26e (patch) | |
tree | b78f35d29a988e8312efcd3d592e8c055820fc40 | |
parent | 648a32b12ec676036ae4115747d458fb6f379d74 (diff) | |
download | cpython-7e9bf4ec91fdcc884b4469f796d3db7a91c0d26e.zip cpython-7e9bf4ec91fdcc884b4469f796d3db7a91c0d26e.tar.gz cpython-7e9bf4ec91fdcc884b4469f796d3db7a91c0d26e.tar.bz2 |
Fix wrong availability for signal.SIGCHLD (GH-23285) (#23426)
I believe this is a mistake. SIGCHLD is only available on Unix systems, not Windows.
(cherry picked from commit 4c24b08cd3239b417a5f8c7ba2ba54c840d051e3)
Co-authored-by: Zhang Maiyun <myzhang1029@hotmail.com>
Co-authored-by: Zhang Maiyun <myzhang1029@hotmail.com>
-rw-r--r-- | Doc/library/signal.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/signal.rst b/Doc/library/signal.rst index 5488f4a..5551d2b 100644 --- a/Doc/library/signal.rst +++ b/Doc/library/signal.rst @@ -117,7 +117,7 @@ The variables defined in the :mod:`signal` module are: Child process stopped or terminated. - .. availability:: Windows. + .. availability:: Unix. .. data:: SIGCLD |