MCPcopy Index your code
hub / github.com/python/cpython / rstrip

Method rstrip

Lib/collections/__init__.py:1619–1620  ·  view source on GitHub ↗
(self, chars=None)

Source from the content-addressed store, hash-verified

1617 return self.data.rpartition(sep)
1618
1619 def rstrip(self, chars=None):
1620 return self.__class__(self.data.rstrip(chars))
1621
1622 def split(self, sep=None, maxsplit=-1):
1623 return self.data.split(sep, maxsplit)

Callers 15

inject_traceFunction · 0.45
parse_platformsMethod · 0.45
_groupFunction · 0.45
extend_pathFunction · 0.45
formatmonthMethod · 0.45
formatyearMethod · 0.45
formatmonthMethod · 0.45
formatyearMethod · 0.45
_ipaddress_matchFunction · 0.45
getdocFunction · 0.45
splitdocFunction · 0.45
getdoclocMethod · 0.45

Calls 1

__class__Method · 0.45

Tested by 3

_comment_lineFunction · 0.36
report_failureMethod · 0.36
test_writeMethod · 0.36