mirror of
https://github.com/python/cpython.git
synced 2025-08-28 12:45:07 +00:00
[3.13] gh-131927: Prevent emitting compiler warnings twice (GH-131993) (GH-132463)
(cherry picked from commit 3d08c8ad20
)
This commit is contained in:
parent
ff66901d8a
commit
4ff5d88fb1
4 changed files with 48 additions and 2 deletions
|
@ -6616,8 +6616,8 @@ compiler_warn(struct compiler *c, location loc,
|
|||
if (msg == NULL) {
|
||||
return ERROR;
|
||||
}
|
||||
if (PyErr_WarnExplicitObject(PyExc_SyntaxWarning, msg, c->c_filename,
|
||||
loc.lineno, NULL, NULL) < 0)
|
||||
if (_PyErr_WarnExplicitObjectWithContext(PyExc_SyntaxWarning, msg,
|
||||
c->c_filename, loc.lineno) < 0)
|
||||
{
|
||||
if (PyErr_ExceptionMatches(PyExc_SyntaxWarning)) {
|
||||
/* Replace the SyntaxWarning exception with a SyntaxError
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue