Commit bb30af45 authored by Raymond Hettinger's avatar Raymond Hettinger

Add missing close parenthesis.

parent 18c69609
...@@ -755,16 +755,16 @@ elements). If \var{maxsplit} is not specified or is zero, then there ...@@ -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}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment