]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix wrong availability for signal.SIGCHLD (GH-23285) (#23426)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sat, 21 Nov 2020 11:22:08 +0000 (03:22 -0800)
committerGitHub <noreply@github.com>
Sat, 21 Nov 2020 11:22:08 +0000 (13:22 +0200)
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>
Doc/library/signal.rst

index 5488f4a1f9685f7d863817f45fb68ad2a1e55a4b..5551d2b96d9c330f4995839e62bbe492f8b6958c 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