-
-
Notifications
You must be signed in to change notification settings - Fork 32.2k
gh-135801: Fix inaccurate module info for SyntaxWarnings duri 8000 ng AST parsing #135829
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
Most changes to Python require a NEWS entry. Add one using the blurb_it web app or the blurb command-line tool. If this change has little impact on Python users, wait for a maintainer to apply the |
Most changes to Python require a NEWS entry. Add one using the blurb_it web app or the blurb command-line tool. If this change has little impact on Python users, wait for a maintainer to apply the |
*/ | ||
int | ||
_PyErr_EmitSyntaxWarningFromCompiler(PyObject *msg, PyObject *filename, int lineno, int col_offset, | ||
int end_lineno, int end_col_offset) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
_PyErr_EmitSyntaxWarning
is called from compile.c
and ast_preprocess.c
. Arguably, these are both parts of "the compiler". Why do we need to introduce a new function for this rather than fix _PyErr_EmitSyntaxWarning
?
This commit addresses the inaccurate module information provided for SyntaxWarnings during AST parsing, specifically reported in issue #135801.
Previously,
_PyErr_EmitSyntaxWarning
(used by the compiler) relied on_PyErr_WarnExplicitObjectWithContext
to infer the module name from the call stack. During compilation, this often resulted in misleading module names likesys
orimportlib._bootstrap
, making it difficult to filter warnings effectively (e.g., using-W error::SyntaxWarning:test
).To resolve this, a new internal function
_PyErr_EmitSyntaxWarningFromCompiler
was introduced inPython/errors.c
. This function explicitly callsPyErr_WarnExplicitObject
with aNULL
module argument, forcing the warning system to derive the module name from the filename provided by the compiler.The
normalize_module
function inPython/_warnings.c
was also refined. Instead of simple string manipulation or problematic pure C path parsing, it now leverages Python'sos.path
module (via Python C API calls likebasename
,splitext
, anddirname
). This ensures robust and accurate extraction of module names from arbitrary file paths, including correct handling of__init__.py
files, thereby providing correct module information for compiler-generatedSyntaxWarning
messages.This approach ensures cross-platform compatibility and reliability by utilizing Python's battle-tested path handling capabilities, directly addressing the core issue reported.