The Incredible Growth of Python (stackoverflow.blog)

Marko Rauhamaa marko at pacujo.net
Sun Sep 10 06:08:30 EDT 2017


Skip Montanaro <skip.montanaro at gmail.com>:

>>  * asyncio with its a-dialect
>
> What is a/the "a-dialect"?

await
async def
async for
__aiter__
__anext__
async with
__aenter__
__aexit__

What's more, when you turn a function into an async, you need to
refactor a large part of your program.


Marko



More information about the Python-list mailing list