diff options
author | Fred Drake <fdrake@acm.org> | 2001-06-23 06:06:52 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-06-23 06:06:52 (GMT) |
commit | 93852ef3c842b283bd50b66aa1f3876317f380d7 (patch) | |
tree | c2b382f05809065ea67570e6e22cb131f5d37dce /Doc/ref/ref7.tex | |
parent | deda9f3420ea9da5591cd4eec69f5c07f3ee5441 (diff) | |
download | cpython-93852ef3c842b283bd50b66aa1f3876317f380d7.zip cpython-93852ef3c842b283bd50b66aa1f3876317f380d7.tar.gz cpython-93852ef3c842b283bd50b66aa1f3876317f380d7.tar.bz2 |
Fix minor markup nits.
Diffstat (limited to 'Doc/ref/ref7.tex')
-rw-r--r-- | Doc/ref/ref7.tex | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Doc/ref/ref7.tex b/Doc/ref/ref7.tex index 64d3621..e43faec 100644 --- a/Doc/ref/ref7.tex +++ b/Doc/ref/ref7.tex @@ -113,7 +113,7 @@ of the suite and goes back to testing the expression. \indexii{loop}{statement} The \keyword{for} statement is used to iterate over the elements of a -sequence (string, tuple or list): +sequence (such as a string, tuple or list) or other iterable object: \obindex{sequence} \begin{verbatim} @@ -353,10 +353,6 @@ positional parameters, defaulting to the empty tuple. If the form dictionary receiving any excess keyword arguments, defaulting to a new empty dictionary. - - - - It is also possible to create anonymous functions (functions not bound to a name), for immediate use in expressions. This uses lambda forms, described in section \ref{lambda}. Note that the lambda form is |