Merge for issue #26760

This commit is contained in:
Brett Cannon 2016-04-15 12:44:09 -07:00
commit 1f8a1cc0f7
1 changed files with 7 additions and 1 deletions

View 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)