summaryrefslogtreecommitdiffstats
path: root/Doc/reference
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-04-28 18:11:53 (GMT)
committerGeorg Brandl <georg@python.org>2009-04-28 18:11:53 (GMT)
commit583bdc0b42aa646baab690001f4b1c6e83734065 (patch)
tree07cfd0f1591e3a5456995fdeb4f696cf00023e76 /Doc/reference
parent19844eb92ad4fd7f546f847937bf5347e7a8c400 (diff)
downloadcpython-583bdc0b42aa646baab690001f4b1c6e83734065.zip
cpython-583bdc0b42aa646baab690001f4b1c6e83734065.tar.gz
cpython-583bdc0b42aa646baab690001f4b1c6e83734065.tar.bz2
Merged revisions 71397-71398,71441 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r71397 | georg.brandl | 2009-04-08 18:36:39 +0200 (Mi, 08 Apr 2009) | 1 line Remove redundant backtick. ........ r71398 | georg.brandl | 2009-04-08 18:39:04 +0200 (Mi, 08 Apr 2009) | 1 line Update ignore file for suspicious builder. ........ r71441 | georg.brandl | 2009-04-10 10:16:47 +0200 (Fr, 10 Apr 2009) | 1 line Let "lambda" point to the correct heading. ........
Diffstat (limited to 'Doc/reference')
-rw-r--r--Doc/reference/expressions.rst3
1 files changed, 1 insertions, 2 deletions
diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst
index 3664ee9..0af8ee1 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: