]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
gh-91248: Optimize PyFrame_GetVar() (#99252)
authorVictor Stinner <vstinner@python.org>
Sun, 13 Nov 2022 14:37:03 +0000 (15:37 +0100)
committerGitHub <noreply@github.com>
Sun, 13 Nov 2022 14:37:03 +0000 (15:37 +0100)
commit6788303f5c57273c054d2b9e94e478051d7c8f8d
tree0624f6db35a135df5d773563a32c08214a4fbca9
parent57be5459593bbd09583317ebdafc4d58ae51dbf4
gh-91248: Optimize PyFrame_GetVar() (#99252)

PyFrame_GetVar() no longer creates a temporary dictionary to get a
variable.
Doc/c-api/frame.rst
Lib/test/test_frame.py
Objects/frameobject.c