[doc] fix superfluous backtick in front of role. (GH-32220)

This commit is contained in:
Julien Palard 2022-04-02 15:08:36 +02:00 committed by GitHub
parent 1be3260a90
commit 7f9c084fde
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View 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.