[issue33447] Asynchronous lambda syntax

2018-05-08 Thread Noah Simon
Noah Simon <noahs2...@gmail.com> added the comment: Actually, you wouldn't even need to import asyncio. -- ___ Python tracker <rep...@bugs.python.org> <https://bugs.python

[issue33447] Asynchronous lambda syntax

2018-05-08 Thread Noah Simon
New submission from Noah Simon <noahs2...@gmail.com>: It would be very useful to add an asynchronous lambda syntax, as a shortcut for coroutines. I'm not experienced enough to write a PEP or edit the C source, but I have some ideas for syntax: import asyncio foo = async lambda a,b: 5 +