File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -335,12 +335,12 @@ the same library that the Python runtime is using.
335
335
336
336
.. c :function :: PyObject* PyEval_EvalFrameEx (PyFrameObject *f, int throwflag)
337
337
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.
344
344
345
345
.. versionchanged :: 3.4
346
346
This function now includes a debug assertion to help ensure that it
You can’t perform that action at this time.
0 commit comments