(url)
| 1255 | |
| 1256 | |
| 1257 | def splithost(url): |
| 1258 | warnings.warn("urllib.parse.splithost() is deprecated as of 3.8, " |
| 1259 | "use urllib.parse.urlsplit() instead", |
| 1260 | DeprecationWarning, stacklevel=2) |
| 1261 | return _splithost(url) |
| 1262 | |
| 1263 | |
| 1264 | _hostprog = None |
searching dependent graphs…