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

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
string.py 511 def replace(s, old, new, maxreplace=-1):
512 """replace (str, old, new[, maxreplace]) -> string
515 old replaced by new. If the optional argument maxreplace is
516 given, only the first maxreplace occurrences are replaced.
519 return s.replace(old, new, maxreplace)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
string.py 511 def replace(s, old, new, maxreplace=-1):
512 """replace (str, old, new[, maxreplace]) -> string
515 old replaced by new. If the optional argument maxreplace is
516 given, only the first maxreplace occurrences are replaced.
519 return s.replace(old, new, maxreplace)

Completed in 52 milliseconds