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

Method split

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

Source from the content-addressed store, hash-verified

1620 return self.__class__(self.data.rstrip(chars))
1621
1622 def split(self, sep=None, maxsplit=-1):
1623 return self.data.split(sep, maxsplit)
1624
1625 def rsplit(self, sep=None, maxsplit=-1):
1626 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