mirror of
https://github.com/python/cpython.git
synced 2025-01-19 06:54:52 +08:00
Make undetected error on stack unwind a fatal error.
This commit is contained in:
parent
92bee36045
commit
904ed86a77
@ -2306,10 +2306,10 @@ eval_frame(PyFrameObject *f)
|
||||
else {
|
||||
/* This check is expensive! */
|
||||
if (PyErr_Occurred()) {
|
||||
fprintf(stderr,
|
||||
"XXX undetected error (why=%d)\n",
|
||||
why);
|
||||
why = WHY_EXCEPTION;
|
||||
char buf[1024];
|
||||
sprintf(buf, "Stack unwind with exception "
|
||||
"set and why=%d", why);
|
||||
Py_FatalError(buf);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user