-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Open
Labels
parserRelated to the parserRelated to the parserpython314Related to Python 3.14Related to Python 3.14
Description
Currently we get:
❯ echo 'uf"a"' | ruff check --output-format concise -
-:1:3: SyntaxError: Simple statements must be separated by newlines or semicolons
Found 1 error.but ideally we would get the more informative (as of Python 3.14):
>>> uf"a"
File "<python-input-0>", line 1
uf"a"
^^
SyntaxError: 'u' and 'f' prefixes are incompatibleand similarly for t-strings.
CodeMan62 and AlexWaygood
Metadata
Metadata
Assignees
Labels
parserRelated to the parserRelated to the parserpython314Related to Python 3.14Related to Python 3.14