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 pablogsal
Recipients Takuo Matsuoka, pablogsal
Date 2021-08-27.10:07:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1630058844.14.0.0995568774231.issue45014@roundup.psfhosted.org>
In-reply-to
Content
The error is correct:

>>> *(2,3,4)
  File "<stdin>", line 1
SyntaxError: can't use starred expression her

The problem is that you are trying to use as top level while:

*(),

is equivalent to:

(*(),)

which is using them in a tuple
History
Date User Action Args
2021-08-27 10:07:24pablogsalsetrecipients: + pablogsal, Takuo Matsuoka
2021-08-27 10:07:24pablogsalsetmessageid: <1630058844.14.0.0995568774231.issue45014@roundup.psfhosted.org>
2021-08-27 10:07:24pablogsallinkissue45014 messages
2021-08-27 10:07:24pablogsalcreate