This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Takuo Matsuoka
Recipients Takuo Matsuoka
Date 2021-08-26.13:40:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1629985224.61.0.965048817379.issue45014@roundup.psfhosted.org>
In-reply-to
Content
The error is this:

>>> *()
  File "<stdin>", line 1
SyntaxError: can't use starred expression here


I think it's right SyntaxError is raised here, but the message is
incorrect. Indeed, many starred expressions are actually allowed
there. E.g.,

>>> *(),
()


I happen to have filed in this issue tracker the problem that the
definition of a starred expression given in the Language Reference is
incorrect.

https://bugs.python.org/issue44983

It appears all correct starred expressions and only them are allowed
at the point of the error. Thus the error appears to
be one because "*()" is not a starred expression in the correct
sense. I think the wording in the message should be corrected.
History
Date User Action Args
2021-08-26 13:40:24Takuo Matsuokasetrecipients: + Takuo Matsuoka
2021-08-26 13:40:24Takuo Matsuokasetmessageid: <1629985224.61.0.965048817379.issue45014@roundup.psfhosted.org>
2021-08-26 13:40:24Takuo Matsuokalinkissue45014 messages
2021-08-26 13:40:24Takuo Matsuokacreate