Skip to content

Commit 40d2226

Browse files
shihai1991zooba
authored andcommitted
Remove redundant docs of PyEval_EvalFrameEx (GH-14765)
1 parent 68c74d0 commit 40d2226

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Doc/c-api/veryhigh.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -335,12 +335,12 @@ the same library that the Python runtime is using.
335335
336336
.. c:function:: PyObject* PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
337337
338-
This is the main, unvarnished function of Python interpretation. It is
339-
literally 2000 lines long. The code object associated with the execution
340-
frame *f* is executed, interpreting bytecode and executing calls as needed.
341-
The additional *throwflag* parameter can mostly be ignored - if true, then
342-
it causes an exception to immediately be thrown; this is used for the
343-
:meth:`~generator.throw` methods of generator objects.
338+
This is the main, unvarnished function of Python interpretation. The code
339+
object associated with the execution frame *f* is executed, interpreting
340+
bytecode and executing calls as needed. The additional *throwflag*
341+
parameter can mostly be ignored - if true, then it causes an exception
342+
to immediately be thrown; this is used for the :meth:`~generator.throw`
343+
methods of generator objects.
344344
345345
.. versionchanged:: 3.4
346346
This function now includes a debug assertion to help ensure that it

0 commit comments

Comments
 (0)