diff options
author | Georg Brandl <georg@python.org> | 2006-07-05 15:50:05 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-07-05 15:50:05 (GMT) |
commit | d41f4ce0c8c60d4b10e44653f3a39e9d8ba2b6dc (patch) | |
tree | 74e99ed91f7bb62d45d7d8690926188e56d399c5 | |
parent | f41beacecb1bb26adccb0712532e116cd5014009 (diff) | |
download | cpython-d41f4ce0c8c60d4b10e44653f3a39e9d8ba2b6dc.zip cpython-d41f4ce0c8c60d4b10e44653f3a39e9d8ba2b6dc.tar.gz cpython-d41f4ce0c8c60d4b10e44653f3a39e9d8ba2b6dc.tar.bz2 |
no need to elaborate "string".
-rw-r--r-- | Doc/lib/libfuncs.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libfuncs.tex b/Doc/lib/libfuncs.tex index 38eeaf1..d45066b 100644 --- a/Doc/lib/libfuncs.tex +++ b/Doc/lib/libfuncs.tex @@ -468,7 +468,7 @@ class C: Construct a list from those elements of \var{list} for which \var{function} returns true. \var{list} may be either a sequence, a container which supports iteration, or an iterator, If \var{list} - is a string (either \code{str} or \code{unicode}) or a tuple, the result + is a string or a tuple, the result also has that type; otherwise it is always a list. If \var{function} is \code{None}, the identity function is assumed, that is, all elements of \var{list} that are false are removed. |