Add missing close parenthesis.

This commit is contained in:
Raymond Hettinger 2004-09-06 00:42:14 +00:00
parent 18c6960964
commit bb30af4565
1 changed files with 3 additions and 3 deletions

View File

@ -755,16 +755,16 @@ elements). If \var{maxsplit} is not specified or is zero, then there
is no limit on the number of splits (all possible splits are made). is no limit on the number of splits (all possible splits are made).
Consecutive delimiters are not grouped together and are Consecutive delimiters are not grouped together and are
deemed to delimit empty strings (for example, \samp{'1,,2'.split(',')} deemed to delimit empty strings (for example, \samp{'1,,2'.split(',')}
returns \samp{['1', '', '2']}. The \var{sep} argument may consist of returns \samp{['1', '', '2']}). The \var{sep} argument may consist of
multiple characters (for example, \samp{'1, 2, 3'.split(', ')} returns multiple characters (for example, \samp{'1, 2, 3'.split(', ')} returns
\samp{['1', '2', '3']}. Splitting an empty string with a specified \samp{['1', '2', '3']}). Splitting an empty string with a specified
separator returns an empty list. separator returns an empty list.
If \var{sep} is not specified or is \code{None}, a different splitting If \var{sep} is not specified or is \code{None}, a different splitting
algorithm is applied. Words are separated by arbitrary length strings of algorithm is applied. Words are separated by arbitrary length strings of
whitespace characters (spaces, tabs, newlines, returns, and formfeeds). whitespace characters (spaces, tabs, newlines, returns, and formfeeds).
Consecutive whitespace delimiters are treated as a single delimiter Consecutive whitespace delimiters are treated as a single delimiter
(\samp{'1 2 3'.split()} returns \samp{['1', '2', '3']}. Splitting an (\samp{'1 2 3'.split()} returns \samp{['1', '2', '3']}). Splitting an
empty string returns \samp{['']}. empty string returns \samp{['']}.
\end{methoddesc} \end{methoddesc}