summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2020-11-21 11:22:46 (GMT)
committerGitHub <noreply@github.com>2020-11-21 11:22:46 (GMT)
commit3b5b1c82a30506e2194fd1c9d9070e7215d79f41 (patch)
treeffbe3f41b5d28e4ef537931b4b7f43f1480e3eb3
parentd153eb8a1e47123ecdb3fb47995a2c39ce7713ea (diff)
downloadcpython-3b5b1c82a30506e2194fd1c9d9070e7215d79f41.zip
cpython-3b5b1c82a30506e2194fd1c9d9070e7215d79f41.tar.gz
cpython-3b5b1c82a30506e2194fd1c9d9070e7215d79f41.tar.bz2
Fix wrong availability for signal.SIGCHLD (GH-23285) (#23425)
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.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/signal.rst b/Doc/library/signal.rst
index 05b285e..e1daeff 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