]> granicus.if.org Git - python/commitdiff
Merged revisions 71441 via svnmerge from
authorGeorg Brandl <georg@python.org>
Fri, 10 Apr 2009 08:17:21 +0000 (08:17 +0000)
committerGeorg Brandl <georg@python.org>
Fri, 10 Apr 2009 08:17:21 +0000 (08:17 +0000)
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r71441 | georg.brandl | 2009-04-10 10:16:47 +0200 (Fr, 10 Apr 2009) | 1 line

  Let "lambda" point to the correct heading.
........

Doc/reference/expressions.rst

index b3cce006921eae14e0a01f57921ebe6e36ea84e8..b74c47d474bd69d69e1ba8d8ba919de273ed9f97 100644 (file)
@@ -1152,6 +1152,7 @@ not bother to return a value of the same type as its argument, so e.g., ``not
 
 
 .. _lambdas:
+.. _lambda:
 
 Lambdas
 =======
@@ -1176,8 +1177,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 or annotations.
 
-.. _lambda:
-
 
 .. _exprlists: