HomeSort by relevance Sort by last modified time
    Searched refs:maxsplit (Results 1 - 12 of 12) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
stringold.py 104 def split(s, sep=None, maxsplit=0):
105 """split(str [,sep [,maxsplit]]) -> list of strings
108 delimiter string. If maxsplit is nonzero, splits into at most
109 maxsplit words If sep is not specified, any whitespace string
110 is a separator. Maxsplit defaults to 0.
115 return s.split(sep, maxsplit)
402 def replace(s, old, new, maxsplit=0):
403 """replace (str, old, new[, maxsplit]) -> string
406 old replaced by new. If the optional argument maxsplit is
407 given, only the first maxsplit occurrences are replaced
    [all...]
UserString.py 107 def replace(self, old, new, maxsplit=-1):
108 return self.__class__(self.data.replace(old, new, maxsplit))
118 def split(self, sep=None, maxsplit=-1):
119 return self.data.split(sep, maxsplit)
120 def rsplit(self, sep=None, maxsplit=-1):
121 return self.data.rsplit(sep, maxsplit)
string.py 281 def split(s, sep=None, maxsplit=-1):
282 """split(s [,sep [,maxsplit]]) -> list of strings
285 delimiter string. If maxsplit is given, splits at no more than
286 maxsplit places (resulting in at most maxsplit+1 words). If sep
292 return s.split(sep, maxsplit)
296 def rsplit(s, sep=None, maxsplit=-1):
297 """rsplit(s [,sep [,maxsplit]]) -> list of strings
301 to the front. If maxsplit is given, at most maxsplit splits ar
    [all...]
re.py 164 def split(pattern, string, maxsplit=0, flags=0):
167 return _compile(pattern, flags).split(string, maxsplit)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
stringold.py 104 def split(s, sep=None, maxsplit=0):
105 """split(str [,sep [,maxsplit]]) -> list of strings
108 delimiter string. If maxsplit is nonzero, splits into at most
109 maxsplit words If sep is not specified, any whitespace string
110 is a separator. Maxsplit defaults to 0.
115 return s.split(sep, maxsplit)
402 def replace(s, old, new, maxsplit=0):
403 """replace (str, old, new[, maxsplit]) -> string
406 old replaced by new. If the optional argument maxsplit is
407 given, only the first maxsplit occurrences are replaced
    [all...]
UserString.py 107 def replace(self, old, new, maxsplit=-1):
108 return self.__class__(self.data.replace(old, new, maxsplit))
118 def split(self, sep=None, maxsplit=-1):
119 return self.data.split(sep, maxsplit)
120 def rsplit(self, sep=None, maxsplit=-1):
121 return self.data.rsplit(sep, maxsplit)
string.py 281 def split(s, sep=None, maxsplit=-1):
282 """split(s [,sep [,maxsplit]]) -> list of strings
285 delimiter string. If maxsplit is given, splits at no more than
286 maxsplit places (resulting in at most maxsplit+1 words). If sep
292 return s.split(sep, maxsplit)
296 def rsplit(s, sep=None, maxsplit=-1):
297 """rsplit(s [,sep [,maxsplit]]) -> list of strings
301 to the front. If maxsplit is given, at most maxsplit splits ar
    [all...]
re.py 164 def split(pattern, string, maxsplit=0, flags=0):
167 return _compile(pattern, flags).split(string, maxsplit)
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
unicodeobject.h     [all...]
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
unicodeobject.h     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/pydoc_data/
topics.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/pydoc_data/
topics.py     [all...]

Completed in 398 milliseconds