]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[doc] fix superfluous backtick in front of role. (GH-32220)
authorJulien Palard <julien@palard.fr>
Sat, 2 Apr 2022 13:08:36 +0000 (15:08 +0200)
committerGitHub <noreply@github.com>
Sat, 2 Apr 2022 13:08:36 +0000 (15:08 +0200)
Doc/whatsnew/3.11.rst

index 0c7f4afa694adb42b1b08bc2bc07f00712246352..809cbd556c8c7fa4c81e7156aaca38381b066ca6 100644 (file)
@@ -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.