bpo-45084: Remove deprecated urllib.parse functions by vstinner · Pull Request #28115 · python/cpython

@vstinner

Remove the following undocumented urllib.parse functions, deprecated
in Python 3.8:

* splitattr()
* splithost()
* splitnport()
* splitpasswd()
* splitport()
* splitquery()
* splittag()
* splittype()
* splituser()
* splitvalue()
* to_bytes()

Use urlparse() or parse_qsl() instead.