summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2022-04-01 08:17:57 (GMT)
committerGitHub <noreply@github.com>2022-04-01 08:17:57 (GMT)
commitb9a5522dd952125a99ff554f01f311cae25f5a91 (patch)
treeb1a735deb13bd49a2b6deb89bb85cd02e035800d /Misc/NEWS.d
parentd4bb38f82bf18b00db3129031ce4969b6f0caab9 (diff)
downloadcpython-b9a5522dd952125a99ff554f01f311cae25f5a91.zip
cpython-b9a5522dd952125a99ff554f01f311cae25f5a91.tar.gz
cpython-b9a5522dd952125a99ff554f01f311cae25f5a91.tar.bz2
bpo-46850: Move _PyEval_EvalFrameDefault() to internal C API (GH-32052)
Move the private undocumented _PyEval_EvalFrameDefault() function to the internal C API. The function now uses the _PyInterpreterFrame type which is part of the internal C API.
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/C API/2022-03-22-16-48-02.bpo-46850.7M5dO7.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/C API/2022-03-22-16-48-02.bpo-46850.7M5dO7.rst b/Misc/NEWS.d/next/C API/2022-03-22-16-48-02.bpo-46850.7M5dO7.rst
new file mode 100644
index 0000000..1519ac7
--- /dev/null
+++ b/Misc/NEWS.d/next/C API/2022-03-22-16-48-02.bpo-46850.7M5dO7.rst
@@ -0,0 +1,3 @@
+Move the private undocumented ``_PyEval_EvalFrameDefault()`` function to the
+internal C API. The function now uses the ``_PyInterpreterFrame`` type which is
+part of the internal C API. Patch by Victor Stinner.