]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.13] gh-139843: Document signals (SIGSTOP, SIGVTALRM, SIGPROF) to fix sphinx refere...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Fri, 10 Oct 2025 15:34:52 +0000 (17:34 +0200)
committerGitHub <noreply@github.com>
Fri, 10 Oct 2025 15:34:52 +0000 (15:34 +0000)
gh-139843: Document signals (SIGSTOP, SIGVTALRM, SIGPROF) to fix sphinx references (GH-139896)
(cherry picked from commit 302f19d1f1880dd29deb5ad02fa2c21639319559)

Co-authored-by: Weilin Du <108666168+LamentXU123@users.noreply.github.com>
Doc/library/signal.rst

index 7ef7bbe8d968396af3e16693dfe8680c5c71ba58..d030b75bb19038a43d710707061797851d7c876a 100644 (file)
@@ -205,6 +205,12 @@ The variables defined in the :mod:`signal` module are:
 
    .. availability:: Unix.
 
+.. data:: SIGPROF
+
+   Profiling timer expired.
+
+   .. availability:: Unix.
+
 .. data:: SIGQUIT
 
    Terminal quit signal.
@@ -215,6 +221,10 @@ The variables defined in the :mod:`signal` module are:
 
    Segmentation fault: invalid memory reference.
 
+.. data:: SIGSTOP
+
+   Stop executing (cannot be caught or ignored).
+
 .. data:: SIGSTKFLT
 
    Stack fault on coprocessor. The Linux kernel does not raise this signal: it
@@ -243,6 +253,12 @@ The variables defined in the :mod:`signal` module are:
 
    .. availability:: Unix.
 
+.. data:: SIGVTALRM
+
+   Virtual timer expired.
+
+   .. availability:: Unix.
+
 .. data:: SIGWINCH
 
    Window resize signal.