-
-
Notifications
You must be signed in to change notification settings - Fork 34.5k
incorrect SyntaxError #109120
Copy link
Copy link
Closed
Labels
3.11only security fixesonly security fixes3.12only security fixesonly security fixes3.13bugs and security fixesbugs and security fixesinterpreter-core(Objects, Python, Grammar, and Parser dirs)(Objects, Python, Grammar, and Parser dirs)topic-parsertype-bugAn unexpected behavior, bug, or errorAn unexpected behavior, bug, or error
Metadata
Metadata
Assignees
Labels
3.11only security fixesonly security fixes3.12only security fixesonly security fixes3.13bugs and security fixesbugs and security fixesinterpreter-core(Objects, Python, Grammar, and Parser dirs)(Objects, Python, Grammar, and Parser dirs)topic-parsertype-bugAn unexpected behavior, bug, or errorAn unexpected behavior, bug, or error
Bug report
Bug description:
The following input will cause a
SyntaxError. That's all well and good, but the message for theSyntaxErroris incorrect.This is not correct. That error message is intended for cases like this
f(**kwargs, *args).This bug is present on
3.9,3.10, and3.11. I haven't tested3.12, but I suspect that it is present there as well. The bug is not present on3.8.CPython versions tested on:
3.8 3.9, 3.10, 3.11
Operating systems tested on:
Linux, Windows
Linked PRs