summaryrefslogtreecommitdiff
path: root/Lib/string.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-02-09 20:18:41 +0000
committerTim Peters <tim.peters@gmail.com>2001-02-09 20:18:41 +0000
commitbfd02223f74773c3db270ef60230f11b3448e05e (patch)
treec0ce17cd7be0d3d61119bbb39733dd0e290aed8a /Lib/string.py
parentd645f780fd8ec2c5c8e7e6d2f768de2d01bfc8e6 (diff)
downloadcpython-bfd02223f74773c3db270ef60230f11b3448e05e.tar.gz
Nuke accurate but confusing and unhelpful comments about split vs splitfields.
Diffstat (limited to 'Lib/string.py')
-rw-r--r--Lib/string.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/string.py b/Lib/string.py
index bdd9254966..913d980bae 100644
--- a/Lib/string.py
+++ b/Lib/string.py
@@ -100,7 +100,6 @@ def rstrip(s):
# Split a string into a list of space/tab-separated words
-# NB: split(s) is NOT the same as splitfields(s, ' ')!
def split(s, sep=None, maxsplit=-1):
"""split(s [,sep [,maxsplit]]) -> list of strings