(url)
| 1075 | |
| 1076 | |
| 1077 | def splithost(url): |
| 1078 | warnings.warn("urllib.parse.splithost() is deprecated as of 3.8, " |
| 1079 | "use urllib.parse.urlparse() instead", |
| 1080 | DeprecationWarning, stacklevel=2) |
| 1081 | return _splithost(url) |
| 1082 | |
| 1083 | |
| 1084 | _hostprog = None |
nothing calls this directly
no test coverage detected