diff options
author | Georg Brandl <georg@python.org> | 2013-10-06 08:28:48 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-10-06 08:28:48 (GMT) |
commit | 6930777c63899e25ad5bb1033da8294f7aaedd4e (patch) | |
tree | 6bdb05ac995debacf810f2ebfe59177ccdb7ab5e /Doc/tutorial | |
parent | ce28e2c24b4c8bbead80f0ef0e948daff3ba4be6 (diff) | |
parent | 242e6a0bce9143c62262817b17b46d32a3c916a3 (diff) | |
download | cpython-6930777c63899e25ad5bb1033da8294f7aaedd4e.zip cpython-6930777c63899e25ad5bb1033da8294f7aaedd4e.tar.gz cpython-6930777c63899e25ad5bb1033da8294f7aaedd4e.tar.bz2 |
merge with 3.3
Diffstat (limited to 'Doc/tutorial')
-rw-r--r-- | Doc/tutorial/controlflow.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/controlflow.rst b/Doc/tutorial/controlflow.rst index 56df73d..52e382e 100644 --- a/Doc/tutorial/controlflow.rst +++ b/Doc/tutorial/controlflow.rst @@ -588,7 +588,7 @@ Lambda Expressions Small anonymous functions can be created with the :keyword:`lambda` keyword. This function returns the sum of its two arguments: ``lambda a, b: a+b``. -Lambda forms can be used wherever function objects are required. They are +Lambda functions can be used wherever function objects are required. They are syntactically restricted to a single expression. Semantically, they are just syntactic sugar for a normal function definition. Like nested function definitions, lambda functions can reference variables from the containing |