diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-02-09 20:18:41 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-02-09 20:18:41 (GMT) |
commit | 6b6b39e8b634c8ed7256a1b0702ab26cfc3724e5 (patch) | |
tree | f686983c81830fc52d57aaa9949247792d22e6f2 /Lib/stringold.py | |
parent | 10fb3863994a7242dd6f86bf8d571d30338f2061 (diff) | |
download | cpython-6b6b39e8b634c8ed7256a1b0702ab26cfc3724e5.zip cpython-6b6b39e8b634c8ed7256a1b0702ab26cfc3724e5.tar.gz cpython-6b6b39e8b634c8ed7256a1b0702ab26cfc3724e5.tar.bz2 |
Nuke accurate but confusing and unhelpful comments about split vs splitfields.
Diffstat (limited to 'Lib/stringold.py')
-rw-r--r-- | Lib/stringold.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/stringold.py b/Lib/stringold.py index dcc1143..2ee0ad9 100644 --- a/Lib/stringold.py +++ b/Lib/stringold.py @@ -98,7 +98,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=0): """split(str [,sep [,maxsplit]]) -> list of strings |