(url)
| 1171 | |
| 1172 | |
| 1173 | def splitquery(url): |
| 1174 | warnings.warn("urllib.parse.splitquery() is deprecated as of 3.8, " |
| 1175 | "use urllib.parse.urlparse() instead", |
| 1176 | DeprecationWarning, stacklevel=2) |
| 1177 | return _splitquery(url) |
| 1178 | |
| 1179 | |
| 1180 | def _splitquery(url): |
nothing calls this directly
no test coverage detected