diff options
author | Georg Brandl <georg@python.org> | 2009-04-10 08:16:47 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-04-10 08:16:47 +0000 |
commit | 5623e50d1a12389c05d59e2a6de9de3bf6bc445c (patch) | |
tree | 3aa1df5ea7a9c1e820af066c367895b3bc500470 | |
parent | c4f4697196e2c489a4e0adfa75484c0f0913b40a (diff) | |
download | cpython-git-5623e50d1a12389c05d59e2a6de9de3bf6bc445c.tar.gz |
Let "lambda" point to the correct heading.
-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 3664ee95bd..0af8ee1db0 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: |