summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-11-01 20:37:02 (GMT)
committerGeorg Brandl <georg@python.org>2007-11-01 20:37:02 (GMT)
commit744b32a544bae1bd4e40730802103ae823f3c673 (patch)
tree97024d442ffe946bfce1a1c52edbda40f7e3d9fb /Doc
parent4de2263616bce36853ab4f44b7b5892610651ae5 (diff)
downloadcpython-744b32a544bae1bd4e40730802103ae823f3c673.zip
cpython-744b32a544bae1bd4e40730802103ae823f3c673.tar.gz
cpython-744b32a544bae1bd4e40730802103ae823f3c673.tar.bz2
Fix markup glitch.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/stdtypes.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
index a191ab4..2a6a973 100644
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -938,7 +938,7 @@ string functions based on regular expressions.
specified, then there is no limit on the number of splits (all possible
splits are made).
- If *sep is given, consecutive delimiters are not grouped together and are
+ If *sep* is given, consecutive delimiters are not grouped together and are
deemed to delimit empty strings (for example, ``'1,,2'.split(',')`` returns
``['1', '', '2']``). The *sep* argument may consist of multiple characters
(for example, ``'1<>2<>3'.split('<>')`` returns ``['1', '2', '3']``).