(host)
| 1124 | |
| 1125 | |
| 1126 | def splitport(host): |
| 1127 | warnings.warn("urllib.parse.splitport() is deprecated as of 3.8, " |
| 1128 | "use urllib.parse.urlparse() instead", |
| 1129 | DeprecationWarning, stacklevel=2) |
| 1130 | return _splitport(host) |
| 1131 | |
| 1132 | |
| 1133 | # splittag('/path#tag') --> '/path', 'tag' |
nothing calls this directly
no test coverage detected