summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHai Shi <shihai1992@gmail.com>2019-07-14 08:20:57 (GMT)
committerSteve Dower <steve.dower@python.org>2019-07-14 08:20:56 (GMT)
commit40d2226a69aed6252023d365731bd4ed39dc1a4f (patch)
tree7cd45fd343e6b74ccebc01672c6974641c6add16
parent68c74d05c1fdaf59d8711431884af975ac2ac5f8 (diff)
downloadcpython-40d2226a69aed6252023d365731bd4ed39dc1a4f.zip
cpython-40d2226a69aed6252023d365731bd4ed39dc1a4f.tar.gz
cpython-40d2226a69aed6252023d365731bd4ed39dc1a4f.tar.bz2
Remove redundant docs of PyEval_EvalFrameEx (GH-14765)
-rw-r--r--Doc/c-api/veryhigh.rst12
1 files changed, 6 insertions, 6 deletions
diff --git a/Doc/c-api/veryhigh.rst b/Doc/c-api/veryhigh.rst
index e6704dd..67dc11d 100644
--- a/Doc/c-api/veryhigh.rst
+++ b/Doc/c-api/veryhigh.rst
@@ -335,12 +335,12 @@ the same library that the Python runtime is using.
.. c:function:: PyObject* PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
- This is the main, unvarnished function of Python interpretation. It is
- literally 2000 lines long. The code object associated with the execution
- frame *f* is executed, interpreting bytecode and executing calls as needed.
- The additional *throwflag* parameter can mostly be ignored - if true, then
- it causes an exception to immediately be thrown; this is used for the
- :meth:`~generator.throw` methods of generator objects.
+ This is the main, unvarnished function of Python interpretation. The code
+ object associated with the execution frame *f* is executed, interpreting
+ bytecode and executing calls as needed. The additional *throwflag*
+ parameter can mostly be ignored - if true, then it causes an exception
+ to immediately be thrown; this is used for the :meth:`~generator.throw`
+ methods of generator objects.
.. versionchanged:: 3.4
This function now includes a debug assertion to help ensure that it