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

Function splitattr

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

Source from the content-addressed store, hash-verified

1261
1262
1263def splitattr(url):
1264 warnings.warn("urllib.parse.splitattr() is deprecated as of 3.8, "
1265 "use urllib.parse.urlparse() instead",
1266 DeprecationWarning, stacklevel=2)
1267 return _splitattr(url)
1268
1269
1270def _splitattr(url):

Callers 1

test_splitattrMethod · 0.85

Calls 2

_splitattrFunction · 0.85
warnMethod · 0.45

Tested by 1

test_splitattrMethod · 0.68