From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Tue, 22 May 2018 08:07:28 +0000 (-0700) Subject: Fix lambda parameters being refered as arguments (GH-7037) X-Git-Tag: v3.7.0b5~65 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d9055f8176deeba43506f080e31e9503f35fc3d2;p=python Fix lambda parameters being refered as arguments (GH-7037) (cherry picked from commit 268cc7c3f8f58075b42ff0cd6b6c6c5d76044895) Co-authored-by: Andrés Delfino --- diff --git a/Doc/glossary.rst b/Doc/glossary.rst index 4b1722f5c0..66964692cc 100644 --- a/Doc/glossary.rst +++ b/Doc/glossary.rst @@ -603,7 +603,7 @@ Glossary lambda An anonymous inline function consisting of a single :term:`expression` which is evaluated when the function is called. The syntax to create - a lambda function is ``lambda [arguments]: expression`` + a lambda function is ``lambda [parameters]: expression`` LBYL Look before you leap. This coding style explicitly tests for diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst index 7fe989b905..6b2d6a9e0a 100644 --- a/Doc/reference/expressions.rst +++ b/Doc/reference/expressions.rst @@ -1613,12 +1613,12 @@ Lambdas lambda_expr_nocond: "lambda" [`parameter_list`]: `expression_nocond` Lambda expressions (sometimes called lambda forms) are used to create anonymous -functions. The expression ``lambda arguments: expression`` yields a function +functions. The expression ``lambda parameters: expression`` yields a function object. The unnamed object behaves like a function object defined with: .. code-block:: none - def (arguments): + def (parameters): return expression See section :ref:`function` for the syntax of parameter lists. Note that