HomeSort by relevance Sort by last modified time
    Searched defs:rstrip (Results 1 - 8 of 8) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
stringold.py 93 def rstrip(s): function
94 """rstrip(s) -> string
100 return s.rstrip()
UserString.py 117 def rstrip(self, chars=None): return self.__class__(self.data.rstrip(chars)) member in class:UserString
string.py 270 def rstrip(s, chars=None): function
271 """rstrip(s [,chars]) -> string
277 return s.rstrip(chars)
pydoc.py 57 from string import expandtabs, find, join, lower, split, strip, rfind, rstrip namespace
84 return result and re.sub('^ *\n', '', rstrip(result)) or ''
91 elif len(lines) >= 2 and not rstrip(lines[1]):
365 docloc = "%s/%s" % (docloc.rstrip("/"), object.__name__)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
stringold.py 93 def rstrip(s): function
94 """rstrip(s) -> string
100 return s.rstrip()
UserString.py 117 def rstrip(self, chars=None): return self.__class__(self.data.rstrip(chars)) member in class:UserString
string.py 270 def rstrip(s, chars=None): function
271 """rstrip(s [,chars]) -> string
277 return s.rstrip(chars)
pydoc.py 57 from string import expandtabs, find, join, lower, split, strip, rfind, rstrip namespace
84 return result and re.sub('^ *\n', '', rstrip(result)) or ''
91 elif len(lines) >= 2 and not rstrip(lines[1]):
365 docloc = "%s/%s" % (docloc.rstrip("/"), object.__name__)
    [all...]

Completed in 67 milliseconds