Unverified Kaydet (Commit) d9055f81 authored tarafından Miss Islington (bot)'s avatar Miss Islington (bot) Kaydeden (comit) GitHub

Fix lambda parameters being refered as arguments (GH-7037)

(cherry picked from commit 268cc7c3)
Co-authored-by: 's avatarAndrés Delfino <adelfino@gmail.com>
üst 2b4ed5da
...@@ -603,7 +603,7 @@ Glossary ...@@ -603,7 +603,7 @@ Glossary
lambda lambda
An anonymous inline function consisting of a single :term:`expression` An anonymous inline function consisting of a single :term:`expression`
which is evaluated when the function is called. The syntax to create 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 LBYL
Look before you leap. This coding style explicitly tests for Look before you leap. This coding style explicitly tests for
......
...@@ -1613,12 +1613,12 @@ Lambdas ...@@ -1613,12 +1613,12 @@ Lambdas
lambda_expr_nocond: "lambda" [`parameter_list`]: `expression_nocond` lambda_expr_nocond: "lambda" [`parameter_list`]: `expression_nocond`
Lambda expressions (sometimes called lambda forms) are used to create anonymous 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: object. The unnamed object behaves like a function object defined with:
.. code-block:: none .. code-block:: none
def <lambda>(arguments): def <lambda>(parameters):
return expression return expression
See section :ref:`function` for the syntax of parameter lists. Note that See section :ref:`function` for the syntax of parameter lists. Note that
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment