-
-
Notifications
You must be signed in to change notification settings - Fork 30.9k
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
A SyntaxError less detailed since 3.10 in specific example #94192
Labels
interpreter-core
(Objects, Python, Grammar, and Parser dirs)
type-bug
An unexpected behavior, bug, or error
Comments
AlexWaygood
added
the
interpreter-core
(Objects, Python, Grammar, and Parser dirs)
label
Jun 24, 2022
You can use triple backquotes (```) to preserve formatting on Github.
|
cc @pablogsal |
I think i've found a simple fix that seems to work, will open a PR. |
pablogsal
pushed a commit
that referenced
this issue
Jun 26, 2022
…s value. (#94304) * Fix error for dictionary literals with invalid expression as value. * Remove trailing whitespace
miss-islington
pushed a commit
to miss-islington/cpython
that referenced
this issue
Jun 26, 2022
…sion as value. (pythonGH-94304) * Fix error for dictionary literals with invalid expression as value. * Remove trailing whitespace (cherry picked from commit 8c237a7) Co-authored-by: wookie184 <[email protected]>
miss-islington
added a commit
that referenced
this issue
Jun 26, 2022
…s value. (GH-94304) * Fix error for dictionary literals with invalid expression as value. * Remove trailing whitespace (cherry picked from commit 8c237a7) Co-authored-by: wookie184 <[email protected]>
wookie184
added a commit
to wookie184/cpython
that referenced
this issue
Jun 27, 2022
… expression as value. (pythonGH-94304) * Fix error for dictionary literals with invalid expression as value. * Remove trailing whitespace. (cherry picked from commit 8c237a7) Co-authored-by: wookie184 <[email protected]>
pablogsal
pushed a commit
that referenced
this issue
Jun 27, 2022
…ssion as value. (GH-94304) (#94344) Co-authored-by: wookie184 <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
interpreter-core
(Objects, Python, Grammar, and Parser dirs)
type-bug
An unexpected behavior, bug, or error
Python 3.10.5
New SyntaxError ^ pointer is misleading in following example compared to older python versions.
Results in error message on 3.10.5:
While on python 3.8 it was more helpful:
edit: added triple backquotes to preserve formatting on github. thanks hauntsaninja.
On 3.10.5 it is pointing on the ":" prior to lambda, while on 3.8 it is pointing on the missing comma.
The text was updated successfully, but these errors were encountered: