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 eric.smith
Recipients Kasra Vand, docs@python, eric.smith
Date 2019-05-01.11:36:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1556710568.06.0.410086387592.issue36765@roundup.psfhosted.org>
In-reply-to
Content
I don't think this is a problem. There are plenty of things allowed by Python's grammar that are converted to errors in subsequent passes. For example:

>>> *[1]
  File "<stdin>", line 1
SyntaxError: can't use starred expression here
>>> *[1],*[2]
(1, 2)
History
Date User Action Args
2019-05-01 11:36:08eric.smithsetrecipients: + eric.smith, docs@python, Kasra Vand
2019-05-01 11:36:08eric.smithsetmessageid: <1556710568.06.0.410086387592.issue36765@roundup.psfhosted.org>
2019-05-01 11:36:08eric.smithlinkissue36765 messages
2019-05-01 11:36:08eric.smithcreate