bpo-43833: Emit warnings for numeric literals followed by keyword by serhiy-storchaka · Pull Request #25466 · python/cpython (original) (raw)
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 andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Conversation10 Commits4 Checks0 Files changed
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
[ Show hidden characters]({{ revealButtonHref }})
Emit a deprecation warning if the numeric literal is immediately followed by
one of keywords: and, else, for, if, in, is, or. Raise a syntax error with
more informative message if it is immediately followed by other keyword or
identifier.
https://bugs.python.org/issue43833
Automerge-Triggered-By: GH:pablogsal
Emit a deprecation warning if the numeric literal is immediately followed by one of keywords: and, else, for, if, in, is, or. Raise a syntax error with more informative message if it is immediately followed by other keyword or identifier.
I am not a fan of this solution as this is coupling the tokenizer and the grammar, which is a known problematic behaviour.
In particular, I don't like the fact that we need to manually check against every keyword explicitly.
Cannot we just error if we find any character that is not a whitespace or a valid numeric literal?
We should try to fix this in a way they is keyword-agnostic
Checking against the list of valid keywords is a temporary code. It is because we want to do gradual deprecation and only emit a warning for currently valid code. At the end, there will be only syntax error and no list of keywords.
If emit a warning unconditionally, this will break some tests for invalid numeric literals (test_bad_numerical_literals
in test_grammar.py
and test_literals_with_leading_zeroes
in test_compile.py
). Some test cases will produce warning and then error, so we would need to rewrite these tests significantly, and several releases later after converting warnings to error restore original tests. Double warning-error can also confuse users.
Checking against the list of valid keywords is a temporary code. It is because we want to do gradual deprecation and only emit a warning for currently valid code. At the end, there will be only syntax error and no list of keywords.
If emit a warning unconditionally, this will break some tests for invalid numeric literals (
test_bad_numerical_literals
intest_grammar.py
andtest_literals_with_leading_zeroes
intest_compile.py
). Some test cases will produce warning and then error, so we would need to rewrite these tests significantly, and several releases later after converting warnings to error restore original tests. Double warning-error can also confuse users.
Thanks for the clarification. Could you add some comments regarding this plans to the source code of the change to make sure this context is there when reading the code?
In that case I assume that the main thing to do here is to all agree on the plan.
I personally find the plan reasonable so I'm on board, but I would go directly to SyntaxWarning and in 1 or 2 releases making it a SyntaxError.
Sure. I added a comment in verify_end_of_number()
, but seems it is not enough. I'll expand by adding explanation of the intention of this behavior.
As for SyntaxWarning vs DeprecationWarning, we still emit DeprecationWarning for invalid character escapes (like in "C:\Program Files"
). Initially SyntaxWarning was emitted, but after public discussion it was changed to DeprecationWarning.
@pablogsal, do you want to add these warnings in 3.10 or 3.11 if add them at all?
@pablogsal, do you want to add these warnings in 3.10 or 3.11 if add them at all?
I would like them to be included in Python 3.10 so we can make them illegal sooner. What do you think?
Thanks @serhiy-storchaka for the PR 🌮🎉.. I'm working now to backport this PR to: 3.10.
🐍🍒⛏🤖
miss-islington pushed a commit to miss-islington/cpython that referenced this pull request
Emit a deprecation warning if the numeric literal is immediately followed by one of keywords: and, else, for, if, in, is, or. Raise a syntax error with more informative message if it is immediately followed by other keyword or identifier.
Automerge-Triggered-By: GH:pablogsal (cherry picked from commit 2ea6d89)
Co-authored-by: Serhiy Storchaka storchaka@gmail.com
miss-islington added a commit that referenced this pull request
Emit a deprecation warning if the numeric literal is immediately followed by one of keywords: and, else, for, if, in, is, or. Raise a syntax error with more informative message if it is immediately followed by other keyword or identifier.
Automerge-Triggered-By: GH:pablogsal (cherry picked from commit 2ea6d89)
Co-authored-by: Serhiy Storchaka storchaka@gmail.com
sco1 mannequin mentioned this pull request