summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJulien Palard <julien@palard.fr>2022-04-02 13:08:36 (GMT)
committerGitHub <noreply@github.com>2022-04-02 13:08:36 (GMT)
commit7f9c084fdec7ddcfe8855aa79f98545591ae2261 (patch)
treea0df10abdd024777bb7b9d988b64a7adf23e90c8
parent1be3260a90f16aae334d993aecf7b70426f98013 (diff)
downloadcpython-7f9c084fdec7ddcfe8855aa79f98545591ae2261.zip
cpython-7f9c084fdec7ddcfe8855aa79f98545591ae2261.tar.gz
cpython-7f9c084fdec7ddcfe8855aa79f98545591ae2261.tar.bz2
[doc] fix superfluous backtick in front of role. (GH-32220)
-rw-r--r--Doc/whatsnew/3.11.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst
index 0c7f4af..809cbd5 100644
--- a/Doc/whatsnew/3.11.rst
+++ b/Doc/whatsnew/3.11.rst
@@ -1017,8 +1017,8 @@ Porting to Python 3.11
instead.
Debuggers that accessed the ``f_locals`` directly *must* call
- `:c:func:`PyFrame_GetLocals` instead. They no longer need to call
- `:c:func:`PyFrame_FastToLocalsWithError` or :c:func:`PyFrame_LocalsToFast`,
+ :c:func:`PyFrame_GetLocals` instead. They no longer need to call
+ :c:func:`PyFrame_FastToLocalsWithError` or :c:func:`PyFrame_LocalsToFast`,
in fact they should not call those functions. The necessary updating of the
frame is now managed by the virtual machine.