Home | History | Annotate | Download | only in python2.7

Lines Matching defs:split

48     Split the argument into words using split, capitalize each
53 sep is used to split and join the words.
56 return (sep or ' ').join(x.capitalize() for x in s.split(sep))
280 # Split a string into a list of space/tab-separated words
281 def split(s, sep=None, maxsplit=-1):
282 """split(s [,sep [,maxsplit]]) -> list of strings
289 (split and splitfields are synonymous)
292 return s.split(sep, maxsplit)
293 splitfields = split
295 # Split a string into a list of space/tab-separated words