[Python-checkins] r58753 - python/trunk/Doc/library/stdtypes.rst
georg.brandl
python-checkins at python.org
Thu Nov 1 21:37:02 CET 2007
Author: georg.brandl
Date: Thu Nov 1 21:37:02 2007
New Revision: 58753
Modified:
python/trunk/Doc/library/stdtypes.rst
Log:
Fix markup glitch.
Modified: python/trunk/Doc/library/stdtypes.rst
==============================================================================
--- python/trunk/Doc/library/stdtypes.rst (original)
+++ python/trunk/Doc/library/stdtypes.rst Thu Nov 1 21:37:02 2007
@@ -938,7 +938,7 @@
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']``).
More information about the Python-checkins
mailing list