python / python/cpython

Disallow lone starred expressions at the *grammar* level

Open
#156,058 2 comments 0 reactions 1 assignee View on GitHub

@encukou is already working on this.

Since Aug 19, 2026.

interpreter-core topic-parser
Dominant language
Python
Stars
77.2k
Forks
35.9k
PR merge metrics
PR metrics pending

Description

Statements like the following (where () can be any iterable -- or at the syntax level, any value):

  • *()
  • x = *()
  • yield *()
  • return *()
  • for _ in *(): ...

are not valid without a comma after the iterable.
These are allowed by python.gram and only rejected in the code generation step. This means that the documented Full Grammar specification is incomplete. We can do better.

Linked PRs
  • gh-156059

Contributor guide

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.