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 zsol
Recipients zsol
Date 2018-04-24.13:02:45
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1524574965.95.0.682650639539.issue33349@psf.upfronthosting.co.za>
In-reply-to
Content
This is valid since python3.7:

```
def f():
    return (i * 2 async for i in arange(42))
```

but lib2to3 doesn't parse this properly, because `async` is tokenized as a `NAME` instead of `ASYNC`
History
Date User Action Args
2018-04-24 13:02:45zsolsetrecipients: + zsol
2018-04-24 13:02:45zsolsetmessageid: <1524574965.95.0.682650639539.issue33349@psf.upfronthosting.co.za>
2018-04-24 13:02:45zsollinkissue33349 messages
2018-04-24 13:02:45zsolcreate