mirror of
https://github.com/python/cpython.git
synced 2025-01-19 15:05:15 +08:00
ceval.c: catch recursion error on _PyUnicode_AsString(co->co_filename)
This commit is contained in:
parent
8060399654
commit
a00064576a
@ -1232,6 +1232,10 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
|
||||
PyObject *error_type, *error_value, *error_traceback;
|
||||
PyErr_Fetch(&error_type, &error_value, &error_traceback);
|
||||
filename = _PyUnicode_AsString(co->co_filename);
|
||||
if (filename == NULL && tstate->overflowed) {
|
||||
/* maximum recursion depth exceeded */
|
||||
goto exit_eval_frame;
|
||||
}
|
||||
PyErr_Restore(error_type, error_value, error_traceback);
|
||||
}
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user