]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-39946: Remove _PyThreadState_GetFrame (GH-19094)
authorVictor Stinner <vstinner@python.org>
Fri, 20 Mar 2020 16:46:56 +0000 (17:46 +0100)
committerGitHub <noreply@github.com>
Fri, 20 Mar 2020 16:46:56 +0000 (17:46 +0100)
commit6723e933c4d90a408cf3818362a0e4de6d84c932
treefd3c18220235a2ad81a97a1a4728cb145c4fe4c8
parentfd1e1a18fa3befe5b6eeac32e0561e15c7e5164b
bpo-39946: Remove _PyThreadState_GetFrame (GH-19094)

Remove _PyRuntime.getframe hook and remove _PyThreadState_GetFrame
macro which was an alias to _PyRuntime.getframe. They were only
exposed by the internal C API. Remove also PyThreadFrameGetter type.
Doc/whatsnew/3.9.rst
Include/cpython/pystate.h
Include/internal/pycore_pystate.h
Misc/NEWS.d/next/C API/2020-03-20-17-05-52.bpo-39946.3NS-Ls.rst [new file with mode: 0644]
Python/ceval.c
Python/pystate.c
Python/traceback.c