MCPcopy Index your code
hub / github.com/RustPython/RustPython / rsplit

Method rsplit

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

Source from the content-addressed store, hash-verified

1583 return self.data.split(sep, maxsplit)
1584
1585 def rsplit(self, sep=None, maxsplit=-1):
1586 return self.data.rsplit(sep, maxsplit)
1587
1588 def splitlines(self, keepends=False):
1589 return self.data.splitlines(keepends)

Callers 15

_append_docFunction · 0.45
_get_targetFunction · 0.45
create_moduleMethod · 0.45
test_rsplit_bytearrayMethod · 0.45
test_xml_c14n2Method · 0.45
test_win32_mkdir_700Method · 0.45
__init__Method · 0.45
touch_zoneMethod · 0.45
get_zoneinfo_metadataFunction · 0.45
strace_pythonFunction · 0.45

Calls

no outgoing calls

Tested by 8

create_moduleMethod · 0.36
test_rsplit_bytearrayMethod · 0.36
test_xml_c14n2Method · 0.36
test_win32_mkdir_700Method · 0.36
touch_zoneMethod · 0.36
get_zoneinfo_metadataFunction · 0.36