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

Method rindex

Lib/collections/__init__.py:1608–1611  ·  view source on GitHub ↗
(self, sub, start=0, end=_sys.maxsize)

Source from the content-addressed store, hash-verified

1606 return self.data.rfind(sub, start, end)
1607
1608 def rindex(self, sub, start=0, end=_sys.maxsize):
1609 if isinstance(sub, UserString):
1610 sub = sub.data
1611 return self.data.rindex(sub, start, end)
1612
1613 def rjust(self, width, *args):
1614 return self.__class__(self.data.rjust(width, *args))

Callers 4

updateposMethod · 0.45
realpathFunction · 0.45
_parseMethod · 0.45
_from_strMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected