From: Georg Brandl Date: Fri, 10 Apr 2009 08:16:47 +0000 (+0000) Subject: Let "lambda" point to the correct heading. X-Git-Tag: v2.7a1~1511 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5623e50d1a12389c05d59e2a6de9de3bf6bc445c;p=thirdparty%2FPython%2Fcpython.git Let "lambda" point to the correct heading. --- diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst index 3664ee95bdd7..0af8ee1db0ec 100644 --- a/Doc/reference/expressions.rst +++ b/Doc/reference/expressions.rst @@ -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: