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 adamwill
Recipients BTaskaya, adamwill, benjamin.peterson, brett.cannon, christian.heimes, pablogsal, serhiy.storchaka, yselivanov
Date 2020-06-02.20:28:11
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1591129691.92.0.364101842835.issue40848@roundup.psfhosted.org>
In-reply-to
Content
Realized I forgot to give it, so in case it's important, the context here is the black test suite:

https://github.com/psf/black/issues/1441

that test suite has a file full of expressions that it expects to be able to parse this way (it uses `ast.parse()`, which in turn calls `compile()` with this flag). A bare (*starred) line is part of that file:

https://github.com/psf/black/blob/master/tests/data/expression.py#L149

and has been for as long as black has existed. Presumably if this isn't going to be fixed we'll need to adapt this black test file to test a starred expression in a 'valid' way, somehow.
History
Date User Action Args
2020-06-02 20:28:11adamwillsetrecipients: + adamwill, brett.cannon, christian.heimes, benjamin.peterson, serhiy.storchaka, yselivanov, pablogsal, BTaskaya
2020-06-02 20:28:11adamwillsetmessageid: <1591129691.92.0.364101842835.issue40848@roundup.psfhosted.org>
2020-06-02 20:28:11adamwilllinkissue40848 messages
2020-06-02 20:28:11adamwillcreate