summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2005-01-26 22:46:26 (GMT)
committerRaymond Hettinger <python@rcn.com>2005-01-26 22:46:26 (GMT)
commitad5a0f84823ea1a62c483a1cd77d08911db718e6 (patch)
tree1c1c944d8a586e0e26e7909385c032a7f4cfea59 /Doc
parentbd43255329915e679f410a221abe64c5e999952d (diff)
downloadcpython-ad5a0f84823ea1a62c483a1cd77d08911db718e6.zip
cpython-ad5a0f84823ea1a62c483a1cd77d08911db718e6.tar.gz
cpython-ad5a0f84823ea1a62c483a1cd77d08911db718e6.tar.bz2
SF bug #1108303: fix .split() maxsplit doc
Docs incorrectly stated that maxsplit=0 would cause unlimited splitting.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/lib/libstdtypes.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libstdtypes.tex b/Doc/lib/libstdtypes.tex
index f67b16d..6355731 100644
--- a/Doc/lib/libstdtypes.tex
+++ b/Doc/lib/libstdtypes.tex
@@ -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(',')}