]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix wrong availability for signal.SIGCHLD (#23285)
authorZhang Maiyun <myzhang1029@hotmail.com>
Fri, 20 Nov 2020 18:16:46 +0000 (02:16 +0800)
committerGitHub <noreply@github.com>
Fri, 20 Nov 2020 18:16:46 +0000 (20:16 +0200)
I believe this is a mistake. SIGCHLD is only available on Unix systems, not Windows.

Doc/library/signal.rst

index 00a730b6b9ca6aee5d199d34970fd6d357d0af80..84a569d03eb29383b490af90e6352f30f72ee552 100644 (file)
@@ -117,7 +117,7 @@ The variables defined in the :mod:`signal` module are:
 
    Child process stopped or terminated.
 
-   .. availability:: Windows.
+   .. availability:: Unix.
 
 .. data:: SIGCLD