(host)
| 1098 | |
| 1099 | |
| 1100 | def splituser(host): |
| 1101 | warnings.warn("urllib.parse.splituser() is deprecated as of 3.8, " |
| 1102 | "use urllib.parse.urlparse() instead", |
| 1103 | DeprecationWarning, stacklevel=2) |
| 1104 | return _splituser(host) |
| 1105 | |
| 1106 | |
| 1107 | def _splituser(host): |
nothing calls this directly
no test coverage detected