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

Method rfind

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

Source from the content-addressed store, hash-verified

1601 return self.__class__(self.data.replace(old, new, maxsplit))
1602
1603 def rfind(self, sub, start=0, end=_sys.maxsize):
1604 if isinstance(sub, UserString):
1605 sub = sub.data
1606 return self.data.rfind(sub, start, end)
1607
1608 def rindex(self, sub, start=0, end=_sys.maxsize):
1609 if isinstance(sub, UserString):

Callers 15

determine_parentMethod · 0.45
any_missing_maybeMethod · 0.45
render_docFunction · 0.45
_strip_exception_detailsFunction · 0.45
_splitextFunction · 0.45
connectMethod · 0.45
do_breakMethod · 0.45
do_clearMethod · 0.45
splitFunction · 0.45
basenameFunction · 0.45
dirnameFunction · 0.45
_readmoduleFunction · 0.45

Calls

no outgoing calls

Tested by 1

_strip_exception_detailsFunction · 0.36