diff options
author | Georg Brandl <georg@python.org> | 2009-04-10 08:17:21 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-04-10 08:17:21 (GMT) |
commit | c4f8b2456037108077000d614a9de8aed90c364b (patch) | |
tree | b7ba0865ce2600d9c66aaf091bd0ce885a9f0c5c /Doc | |
parent | b4d31fe436de0799e361a671e5d47fa4b3504d04 (diff) | |
download | cpython-c4f8b2456037108077000d614a9de8aed90c364b.zip cpython-c4f8b2456037108077000d614a9de8aed90c364b.tar.gz cpython-c4f8b2456037108077000d614a9de8aed90c364b.tar.bz2 |
Merged revisions 71441 via svnmerge from
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.
........
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/reference/expressions.rst | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst index b3cce00..b74c47d 100644 --- a/Doc/reference/expressions.rst +++ b/Doc/reference/expressions.rst @@ -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: |