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 yselivanov
Recipients yselivanov
Date 2017-10-06.04:25:37
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1507263937.93.0.213398074469.issue31708@psf.upfronthosting.co.za>
In-reply-to
Content
Prior to Python 3.7 we couldn't enable use of asynchronous generator expressions in synchronous functions:

    async arange(n):
        for i in range(n):
            yield i

    def make_arange(n):
        return (i async for i in arange(n))
History
Date User Action Args
2017-10-06 04:25:37yselivanovsetrecipients: + yselivanov
2017-10-06 04:25:37yselivanovsetmessageid: <1507263937.93.0.213398074469.issue31708@psf.upfronthosting.co.za>
2017-10-06 04:25:37yselivanovlinkissue31708 messages
2017-10-06 04:25:37yselivanovcreate