]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Let "lambda" point to the correct heading.
authorGeorg Brandl <georg@python.org>
Fri, 10 Apr 2009 08:16:47 +0000 (08:16 +0000)
committerGeorg Brandl <georg@python.org>
Fri, 10 Apr 2009 08:16:47 +0000 (08:16 +0000)
Doc/reference/expressions.rst

index 3664ee95bdd7f986564b8acfbd7312f751298972..0af8ee1db0eca21b96028c930538d4b36f8e54fd 100644 (file)
@@ -1177,6 +1177,7 @@ not bother to return a value of the same type as its argument, so e.g., ``not
 
 
 .. _lambdas:
+.. _lambda:
 
 Lambdas
 =======
@@ -1201,8 +1202,6 @@ behaves like a function object defined with ::
 See section :ref:`function` for the syntax of parameter lists.  Note that
 functions created with lambda forms cannot contain statements.
 
-.. _lambda:
-
 
 .. _exprlists: