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