Below is a proposal to add support for asynchronous comprehensions and
asynchronous generator expressions in Python 3.6.
``await`` in Comprehensions
---------------------------
We propose to allow the use of ``await`` expressions in both
asynchronous and synchronous comprehensions::
result = [await fun() for fun in funcs]
result = {await fun() for fun in funcs}
result = {fun: await fun() for fun in funcs}
result = [await fun() async for fun in funcs]
result = {await fun() async for fun in funcs}
result = {fun: await fun() async for fun in funcs}
This is only valid in ``async def`` function body.