[doc] fix superfluous backtick in front of role. (GH-32220)
https://github.com/python/cpython/commit/7f9c084fdec7ddcfe8855aa79f98545591a... commit: 7f9c084fdec7ddcfe8855aa79f98545591ae2261 branch: main author: Julien Palard <julien@palard.fr> committer: JulienPalard <julien@palard.fr> date: 2022-04-02T15:08:36+02:00 summary: [doc] fix superfluous backtick in front of role. (GH-32220) files: M Doc/whatsnew/3.11.rst diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst index 0c7f4afa694ad..809cbd556c8c7 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.
participants (1)
-
JulienPalard