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

Method rsplit

Lib/collections/__init__.py:1625–1626  ·  view source on GitHub ↗
(self, sep=None, maxsplit=-1)

Source from the content-addressed store, hash-verified

1623 return self.data.split(sep, maxsplit)
1624
1625 def rsplit(self, sep=None, maxsplit=-1):
1626 return self.data.rsplit(sep, maxsplit)
1627
1628 def splitlines(self, keepends=False):
1629 return self.data.splitlines(keepends)

Callers 12

_append_docFunction · 0.45
_print_summaryMethod · 0.45
_get_targetFunction · 0.45
add_qnameFunction · 0.45
_qnameMethod · 0.45
_attr_matchesMethod · 0.45
get_path_and_prefixMethod · 0.45
resolve_relative_nameMethod · 0.45
source_from_cacheFunction · 0.45
is_packageMethod · 0.45
_resolve_nameFunction · 0.45
_decode_messageFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected