mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
prevert ast errors from being normalized before ast_error_finish is called (closes #15846)
This commit is contained in:
parent
1c371b255f
commit
2e2c903700
3 changed files with 17 additions and 0 deletions
|
@ -92,7 +92,15 @@ ast_error(const node *n, const char *errstr)
|
|||
PyObject *u = Py_BuildValue("zii", errstr, LINENO(n), n->n_col_offset);
|
||||
if (!u)
|
||||
return 0;
|
||||
/*
|
||||
* Prevent the error from being chained. PyErr_SetObject will normalize the
|
||||
* exception in order to chain it. ast_error_finish, however, requires the
|
||||
* error not to be normalized.
|
||||
*/
|
||||
PyObject *save = PyThreadState_GET()->exc_value;
|
||||
PyThreadState_GET()->exc_value = NULL;
|
||||
PyErr_SetObject(PyExc_SyntaxError, u);
|
||||
PyThreadState_GET()->exc_value = save;
|
||||
Py_DECREF(u);
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue