From abf797df66c4c87e508a4a2fd71e3cb19a8624ac Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Fri, 15 Apr 2016 12:43:50 -0700 Subject: Issue #26760: Minimally document PyFrameObject --- Doc/c-api/veryhigh.rst | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Doc/c-api/veryhigh.rst b/Doc/c-api/veryhigh.rst index f8aaf0f..706efdf 100644 --- a/Doc/c-api/veryhigh.rst +++ b/Doc/c-api/veryhigh.rst @@ -307,10 +307,16 @@ the same library that the Python runtime is using. cells. +.. c:type:: PyFrameObject + + The C structure of the objects used to describe frame objects. The + fields of this type are subject to change at any time. + + .. c:function:: PyObject* PyEval_EvalFrame(PyFrameObject *f) Evaluate an execution frame. This is a simplified interface to - PyEval_EvalFrameEx, for backward compatibility. + :c:func:`PyEval_EvalFrameEx`, for backward compatibility. .. c:function:: PyObject* PyEval_EvalFrameEx(PyFrameObject *f, int throwflag) -- cgit v0.12