[Python-checkins] r47245 - python/branches/release24-maint/Doc/lib/libfuncs.tex

georg.brandl python-checkins at python.org
Wed Jul 5 17:50:08 CEST 2006


Author: georg.brandl
Date: Wed Jul  5 17:50:08 2006
New Revision: 47245

Modified:
   python/branches/release24-maint/Doc/lib/libfuncs.tex
Log:
no need to elaborate "string".
 (backport from rev. 47244)

Modified: python/branches/release24-maint/Doc/lib/libfuncs.tex
==============================================================================
--- python/branches/release24-maint/Doc/lib/libfuncs.tex	(original)
+++ python/branches/release24-maint/Doc/lib/libfuncs.tex	Wed Jul  5 17:50:08 2006
@@ -432,7 +432,7 @@
   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.


More information about the Python-checkins mailing list