]> granicus.if.org Git - python/commitdiff
Issue #26760: Minimally document PyFrameObject
authorBrett Cannon <brett@python.org>
Fri, 15 Apr 2016 19:43:50 +0000 (12:43 -0700)
committerBrett Cannon <brett@python.org>
Fri, 15 Apr 2016 19:43:50 +0000 (12:43 -0700)
Doc/c-api/veryhigh.rst

index f8aaf0f67ad731b5c1909593a2500243d9d5cd6d..706efdfd55d6df71c07d79c57b90a0802ded6a02 100644 (file)
@@ -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)