-
-
Notifications
You must be signed in to change notification settings - Fork 31.5k
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
gh-131649: fix test_string_literals SyntaxWarning #131650
gh-131649: fix test_string_literals SyntaxWarning #131650
Conversation
graingert
commented
Mar 24, 2025
•
edited by bedevere-app
bot
Loading
edited by bedevere-app
bot
- Issue: SyntaxWarning in test_string_literals #131649
22cee3c
to
0c73ffe
Compare
@@ -177,7 +177,7 @@ def test_eval_str_invalid_octal_escape(self): | |||
def test_invalid_escape_locations_with_offset(self): | |||
with warnings.catch_warnings(record=True) as w: | |||
warnings.simplefilter('always', category=SyntaxWarning) | |||
eval("\"'''''''''''''''''''''invalid\ Escape\"") | |||
eval("\"'''''''''''''''''''''invalid\\ Escape\"") |
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.
Isn't the purpose of the test to emit a SyntaxWarning warning?
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.
Yes, but only when evaluated (which it still does). The eval here is intended to hide the SyntaxWarning from the interpreter at import, but it wasn't applied correctly
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.
Oh, that's confusing :-) But you're right, currently the code emits the warning when the code is compiled, not when eval() is called.
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.
LGTM
@@ -177,7 +177,7 @@ def test_eval_str_invalid_octal_escape(self): | |||
def test_invalid_escape_locations_with_offset(self): | |||
with warnings.catch_warnings(record=True) as w: | |||
warnings.simplefilter('always', category=SyntaxWarning) | |||
eval("\"'''''''''''''''''''''invalid\ Escape\"") | |||
eval("\"'''''''''''''''''''''invalid\\ Escape\"") |
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.
Oh, that's confusing :-) But you're right, currently the code emits the warning when the code is compiled, not when eval() is called.
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.
LGTM.
Thanks @graingert for the PR, and @vstinner for merging it 🌮🎉.. I'm working now to backport this PR to: 3.12, 3.13. |
Sorry, @graingert and @vstinner, I could not cleanly backport this to
|
Sorry, @graingert and @vstinner, I could not cleanly backport this to
|
Merged, thanks for the fix. @graingert: Automated backports to 3.12 and 3.13 failed (with conflicts?). Do you want to attempt to backport your change manually? |
I took a look at the conflicts. The test boilerplate changed, but the tests strings are the same, so the backport should be as simple as just adding an extra |
…nGH-131650) (cherry picked from commit 2d83891) Co-authored-by: Thomas Grainger <[email protected]>
Thanks that would be great! |
GH-131766 is a backport of this pull request to the 3.13 branch. |
…131766) (cherry picked from commit 2d83891) Co-authored-by: Thomas Grainger <[email protected]>
…nGH-131650) (pythonGH-131766) (cherry picked from commit 2d83891) (cherry picked from commit 5bcb476) Co-authored-by: Brian Schubert <[email protected]> Co-authored-by: Thomas Grainger <[email protected]>
…H-131766) (#131772) [3.13] gh-131649: fix test_string_literals SyntaxWarning (GH-131650) (GH-131766) (cherry picked from commit 2d83891) (cherry picked from commit 5bcb476) Co-authored-by: Brian Schubert <[email protected]> Co-authored-by: Thomas Grainger <[email protected]>