Un-export parse_host and remove it from the docs.

This commit is contained in:
Wilfredo Sánchez 2019-11-07 16:38:08 -08:00
parent 2c9cf879b6
commit f1cb4776f6
2 changed files with 0 additions and 3 deletions

View File

@ -69,7 +69,6 @@ A couple of notable helpers used by the :class:`~hyperlink.URL` type.
.. autoclass:: hyperlink.URLParseError
.. autofunction:: hyperlink.register_scheme
.. autofunction:: hyperlink.parse_host
.. autofunction:: hyperlink.parse
.. TODO: run doctests in docs?

View File

@ -1,6 +1,5 @@
from ._url import (
parse,
parse_host,
register_scheme,
URL,
EncodedURL,
@ -10,7 +9,6 @@ from ._url import (
__all__ = (
"parse",
"parse_host",
"register_scheme",
"URL",
"EncodedURL",