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

Method split

Lib/importlib/metadata/_text.py:97–99  ·  view source on GitHub ↗
(self, splitter=' ', maxsplit=0)

Source from the content-addressed store, hash-verified

95 return self.lower().index(sub.lower())
96
97 def split(self, splitter=' ', maxsplit=0):
98 pattern = re.compile(re.escape(splitter), re.I)
99 return pattern.split(self, maxsplit)

Callers 6

nameMethod · 0.45
loadMethod · 0.45
zip_childrenMethod · 0.45
_top_level_declaredFunction · 0.45
parseMethod · 0.45
transformMethod · 0.45

Calls 2

escapeMethod · 0.80
compileMethod · 0.45

Tested by

no test coverage detected