Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Different error triggered for soft keyword prefixes #130077

Closed
Labels
interpreter-core(Objects, Python, Grammar, and Parser dirs)topic-parsertype-bugAn unexpected behavior, bug, or error
@thatbirdguythatuknownot

Description

Bug report

Bug description:

In the grammar file, a soft keyword being the start of an expression makes it fail the path where the error message has this appended: "Perhaps you forgot a comma?"
However, it also apparently does the same thing for any identifer that is a prefix ofany soft keyword.

>>># multi-letter cases>>># fine, expected behavior>>> (test x)  File "<stdin>", line 1    (test x)     ^^^^^^SyntaxError: invalid syntax. Perhaps you forgot a comma?>>> (match_ x)  File "<stdin>", line 1    (match_ x)     ^^^^^^^^SyntaxError: invalid syntax. Perhaps you forgot a comma?>>> (match x)  File "<stdin>", line 1    (match x)           ^SyntaxError: invalid syntax>>># unexpected behavior>>> (ma x)  File "<stdin>", line 1    (ma x)        ^SyntaxError: invalid syntax>>># single-letter bugs>>># expected behavior>>> (f x)  File "<stdin>", line 1    (f x)     ^^^SyntaxError: invalid syntax. Perhaps you forgot a comma?>>># unexpected behavior>>> (m x)  File "<stdin>", line 1    (m x)       ^SyntaxError: invalid syntax

Sincem is a prefix ofmatch, "forgetting a comma" (i.e. being in a situation that normally triggers that specific error) doesn't provide the same error message as other "normal" identifiers.

CPython versions tested on:

3.14

Operating systems tested on:

Windows

Linked PRs

Metadata

Metadata

Assignees

No one assigned

    Labels

    interpreter-core(Objects, Python, Grammar, and Parser dirs)topic-parsertype-bugAn unexpected behavior, bug, or error

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions


      [8]ページ先頭

      ©2009-2025 Movatter.jp