From 08aaa86f8df40ba9dbff5c206f699a3b965b6b30 Mon Sep 17 00:00:00 2001 From: Yury Selivanov Date: Fri, 17 Apr 2015 19:34:15 -0400 Subject: [PATCH] pep-0492: Add a sub-section about Async Lambdas --- pep-0492.txt | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pep-0492.txt b/pep-0492.txt index 75252279f..b2c7cd77e 100644 --- a/pep-0492.txt +++ b/pep-0492.txt @@ -811,6 +811,15 @@ for asynchronous comprehensions. This should be considered in a separate PEP, if there is a strong demand for this feature. +Async lambdas +------------- + +Lambda coroutines are not part of this proposal. In this proposal they would +look like ``async lambda(parameters): expression``. Unless there is a strong +demand to have them as part of this proposal, it is recommended to consider +them later in a separate PEP. + + Performance ===========