From: Julien Palard Date: Sat, 2 Apr 2022 13:08:36 +0000 (+0200) Subject: [doc] fix superfluous backtick in front of role. (GH-32220) X-Git-Tag: v3.11.0a7~57 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7f9c084fdec7ddcfe8855aa79f98545591ae2261;p=thirdparty%2FPython%2Fcpython.git [doc] fix superfluous backtick in front of role. (GH-32220) --- diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst index 0c7f4afa694a..809cbd556c8c 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.