diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-07-23 21:13:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-23 21:13:23 (GMT) |
commit | 40a337fbaa820feb3198d55d8b4f389360e0b2b8 (patch) | |
tree | 9fc1b67f59e90d05879bad0fea7f280266a273d5 /Doc/howto | |
parent | e02ddb33ce4b576e83170dd773e003a2936c7821 (diff) | |
download | cpython-40a337fbaa820feb3198d55d8b4f389360e0b2b8.zip cpython-40a337fbaa820feb3198d55d8b4f389360e0b2b8.tar.gz cpython-40a337fbaa820feb3198d55d8b4f389360e0b2b8.tar.bz2 |
[3.12] gh-106948: Docs: Disable links for C standard library functions, OS utility functions and system calls (GH-107062) (#107154)
(cherry picked from commit b447e19e720e6781025432a40eb72b1cc93ac944)
Co-authored-by: Erlend E. Aasland <erlend@python.org>
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Diffstat (limited to 'Doc/howto')
-rw-r--r-- | Doc/howto/instrumentation.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/howto/instrumentation.rst b/Doc/howto/instrumentation.rst index 4ce15c6..875f846 100644 --- a/Doc/howto/instrumentation.rst +++ b/Doc/howto/instrumentation.rst @@ -292,11 +292,11 @@ Available static markers .. object:: function__return(str filename, str funcname, int lineno) - This marker is the converse of :c:func:`function__entry`, and indicates that + This marker is the converse of :c:func:`!function__entry`, and indicates that execution of a Python function has ended (either via ``return``, or via an exception). It is only triggered for pure-Python (bytecode) functions. - The arguments are the same as for :c:func:`function__entry` + The arguments are the same as for :c:func:`!function__entry` .. object:: line(str filename, str funcname, int lineno) @@ -304,7 +304,7 @@ Available static markers the equivalent of line-by-line tracing with a Python profiler. It is not triggered within C functions. - The arguments are the same as for :c:func:`function__entry`. + The arguments are the same as for :c:func:`!function__entry`. .. object:: gc__start(int generation) |