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

Method split

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

Source from the content-addressed store, hash-verified

1580 return self.__class__(self.data.rstrip(chars))
1581
1582 def split(self, sep=None, maxsplit=-1):
1583 return self.data.split(sep, maxsplit)
1584
1585 def rsplit(self, sep=None, maxsplit=-1):
1586 return self.data.rsplit(sep, maxsplit)

Callers 10

namedtupleFunction · 0.45
__init__.pyFile · 0.45
_num_versionFunction · 0.45
get_libpathsFunction · 0.45
_get_build_versionFunction · 0.45
find_libraryFunction · 0.45
_num_versionFunction · 0.45
_findLib_crleFunction · 0.45
_findLib_ldFunction · 0.45
dyld_envFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected