Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
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
name
Method · 0.45
load
Method · 0.45
zip_children
Method · 0.45
_top_level_declared
Function · 0.45
parse
Method · 0.45
transform
Method · 0.45
Calls
2
escape
Method · 0.80
compile
Method · 0.45
Tested by
no test coverage detected