PEP 558: Use correct function name

This commit is contained in:
Nick Coghlan 2017-10-22 16:22:13 +10:00
parent 5bf527ba1a
commit 4d9406ca17
1 changed files with 1 additions and 1 deletions

View File

@ -219,7 +219,7 @@ The current cause of CPython's tracing mode quirks (both the side effects from
simply installing a tracing function and the fact that writing values back to
function locals only works for the specific function being traced) is the way
that locals mutation support for trace hooks is currently implemented: the
``PyFrame_FastToLocals`` function.
``PyFrame_LocalsToFast`` function.
When a trace function is installed, CPython currently does the following for
function frames (those where the code object uses "fast locals" semantics):