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

Function splitpasswd

Lib/urllib/parse.py:1173–1177  ·  view source on GitHub ↗
(user)

Source from the content-addressed store, hash-verified

1171
1172
1173def splitpasswd(user):
1174 warnings.warn("urllib.parse.splitpasswd() is deprecated as of 3.8, "
1175 "use urllib.parse.urlparse() instead",
1176 DeprecationWarning, stacklevel=2)
1177 return _splitpasswd(user)
1178
1179
1180def _splitpasswd(user):

Callers 1

test_splitpasswdMethod · 0.85

Calls 2

_splitpasswdFunction · 0.85
warnMethod · 0.45

Tested by 1

test_splitpasswdMethod · 0.68