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

Function splithost

Lib/urllib/parse.py:1137–1141  ·  view source on GitHub ↗
(url)

Source from the content-addressed store, hash-verified

1135
1136
1137def splithost(url):
1138 warnings.warn("urllib.parse.splithost() is deprecated as of 3.8, "
1139 "use urllib.parse.urlparse() instead",
1140 DeprecationWarning, stacklevel=2)
1141 return _splithost(url)
1142
1143
1144_hostprog = None

Callers 1

test_splithostMethod · 0.85

Calls 2

_splithostFunction · 0.85
warnMethod · 0.45

Tested by 1

test_splithostMethod · 0.68