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 cannedrag
Recipients cannedrag, yselivanov
Date 2017-10-20.23:08:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1508540918.29.0.213398074469.issue31832@psf.upfronthosting.co.za>
In-reply-to
Content
$ python3
Python 3.6.3 (default, Oct  3 2017, 21:45:48) 
[GCC 7.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> async def arange(n):
...     for i in range(n):
...         yield i
... 
>>> [i async for i in arange(10)]
  File "<stdin>", line 1
    [i async for i in arange(10)]
           ^
SyntaxError: invalid syntax
>>>
History
Date User Action Args
2017-10-20 23:08:38cannedragsetrecipients: + cannedrag, yselivanov
2017-10-20 23:08:38cannedragsetmessageid: <1508540918.29.0.213398074469.issue31832@psf.upfronthosting.co.za>
2017-10-20 23:08:38cannedraglinkissue31832 messages
2017-10-20 23:08:38cannedragcreate