(url)
| 1201 | |
| 1202 | |
| 1203 | def splitattr(url): |
| 1204 | warnings.warn("urllib.parse.splitattr() is deprecated as of 3.8, " |
| 1205 | "use urllib.parse.urlparse() instead", |
| 1206 | DeprecationWarning, stacklevel=2) |
| 1207 | return _splitattr(url) |
| 1208 | |
| 1209 | |
| 1210 | def _splitattr(url): |
nothing calls this directly
no test coverage detected