MCPcopy Create free account
hub / github.com/RustPython/RustPython / splituser

Function splituser

Lib/urllib/parse.py:1160–1164  ·  view source on GitHub ↗
(host)

Source from the content-addressed store, hash-verified

1158
1159
1160def splituser(host):
1161 warnings.warn("urllib.parse.splituser() is deprecated as of 3.8, "
1162 "use urllib.parse.urlparse() instead",
1163 DeprecationWarning, stacklevel=2)
1164 return _splituser(host)
1165
1166
1167def _splituser(host):

Callers 1

test_splituserMethod · 0.85

Calls 2

_splituserFunction · 0.85
warnMethod · 0.45

Tested by 1

test_splituserMethod · 0.68