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 Vlad Emelianov
Recipients Vlad Emelianov
Date 2019-10-30.13:19:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1572441583.83.0.896942127015.issue38641@roundup.psfhosted.org>
In-reply-to
Content
Lib2to3 does not support changes made in https://bugs.python.org/issue32117

```python
def test():
    my_list = ["value2", "value3"]
    yield "value1", *my_list
    return "value1", *my_list
```

The idea is to use `testlist_star_expr` instead of `testlist`.

This is a backwards compatible change, because testlist_star_expr supports test as well like testlist does.
History
Date User Action Args
2019-10-30 13:19:43Vlad Emelianovsetrecipients: + Vlad Emelianov
2019-10-30 13:19:43Vlad Emelianovsetmessageid: <1572441583.83.0.896942127015.issue38641@roundup.psfhosted.org>
2019-10-30 13:19:43Vlad Emelianovlinkissue38641 messages
2019-10-30 13:19:43Vlad Emelianovcreate