diff options
author | Tim Burke <tim.burke@gmail.com> | 2020-09-15 23:26:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-15 23:26:06 (GMT) |
commit | 47f6ec4c09a138e9049fd245ca312842ff50ce42 (patch) | |
tree | 52e9101461e2dd358b1bd3e8aac88ce013b669cd | |
parent | bff01f3a3aac0c15fe8fbe8b2f561f7927d117a1 (diff) | |
download | cpython-47f6ec4c09a138e9049fd245ca312842ff50ce42.zip cpython-47f6ec4c09a138e9049fd245ca312842ff50ce42.tar.gz cpython-47f6ec4c09a138e9049fd245ca312842ff50ce42.tar.bz2 |
Doc: Fix broken manpage link (GH-21937)
sigprocmask is in section 2, not 3.
-rw-r--r-- | Doc/library/signal.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/signal.rst b/Doc/library/signal.rst index 05b285e..00a730b 100644 --- a/Doc/library/signal.rst +++ b/Doc/library/signal.rst @@ -416,7 +416,7 @@ The :mod:`signal` module defines the following functions: :data:`SIGKILL` and :data:`SIGSTOP` cannot be blocked. - .. availability:: Unix. See the man page :manpage:`sigprocmask(3)` and + .. availability:: Unix. See the man page :manpage:`sigprocmask(2)` and :manpage:`pthread_sigmask(3)` for further information. See also :func:`pause`, :func:`sigpending` and :func:`sigwait`. |