]> granicus.if.org Git - python/commitdiff
SF bug #1108303: fix .split() maxsplit doc
authorRaymond Hettinger <python@rcn.com>
Wed, 26 Jan 2005 22:40:08 +0000 (22:40 +0000)
committerRaymond Hettinger <python@rcn.com>
Wed, 26 Jan 2005 22:40:08 +0000 (22:40 +0000)
Docs incorrectly stated that maxsplit=0 would cause unlimited splitting.

Doc/lib/libstdtypes.tex

index f67b16d201b17019214a4c1596e689c7a54cb649..6355731d7b92580686be8bf683297f569e057455 100644 (file)
@@ -757,7 +757,7 @@ string this method is called on.
 Return a list of the words in the string, using \var{sep} as the
 delimiter string.  If \var{maxsplit} is given, at most \var{maxsplit}
 splits are done. (thus, the list will have at most \code{\var{maxsplit}+1}
-elements).  If \var{maxsplit} is not specified or is zero, then there
+elements).  If \var{maxsplit} is not specified, then there
 is no limit on the number of splits (all possible splits are made).
 Consecutive delimiters are not grouped together and are
 deemed to delimit empty strings (for example, \samp{'1,,2'.split(',')}