summaryrefslogtreecommitdiffstats
path: root/Doc/c-api/sys.rst
diff options
context:
space:
mode:
authorErlend E. Aasland <erlend@python.org>2023-07-23 21:49:48 (GMT)
committerGitHub <noreply@github.com>2023-07-23 21:49:48 (GMT)
commitb3e600a632d018ce868bec0ef26116b8637fe8e0 (patch)
tree0b53b3de8ed4c4334553574c7aa4cbfef74043c3 /Doc/c-api/sys.rst
parent6138ecdeb80d3a62d5cef27b08669495bccbe19b (diff)
downloadcpython-b3e600a632d018ce868bec0ef26116b8637fe8e0.zip
cpython-b3e600a632d018ce868bec0ef26116b8637fe8e0.tar.gz
cpython-b3e600a632d018ce868bec0ef26116b8637fe8e0.tar.bz2
[3.11] gh-106948: Docs: Disable links for C standard library functions, OS utility functions and system calls (#107062) (#107157)
(cherry picked from commit b447e19e720e6781025432a40eb72b1cc93ac944) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Diffstat (limited to 'Doc/c-api/sys.rst')
-rw-r--r--Doc/c-api/sys.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/c-api/sys.rst b/Doc/c-api/sys.rst
index 305a315..57a36c0 100644
--- a/Doc/c-api/sys.rst
+++ b/Doc/c-api/sys.rst
@@ -104,7 +104,7 @@ Operating System Utilities
.. c:function:: PyOS_sighandler_t PyOS_getsig(int i)
Return the current signal handler for signal *i*. This is a thin wrapper around
- either :c:func:`sigaction` or :c:func:`signal`. Do not call those functions
+ either :c:func:`!sigaction` or :c:func:`!signal`. Do not call those functions
directly! :c:type:`PyOS_sighandler_t` is a typedef alias for :c:expr:`void
(\*)(int)`.
@@ -112,7 +112,7 @@ Operating System Utilities
.. c:function:: PyOS_sighandler_t PyOS_setsig(int i, PyOS_sighandler_t h)
Set the signal handler for signal *i* to be *h*; return the old signal handler.
- This is a thin wrapper around either :c:func:`sigaction` or :c:func:`signal`. Do
+ This is a thin wrapper around either :c:func:`!sigaction` or :c:func:`!signal`. Do
not call those functions directly! :c:type:`PyOS_sighandler_t` is a typedef
alias for :c:expr:`void (\*)(int)`.