diff --git a/python/httpx/_httpx/__init__.pyi b/python/httpx/_httpx/__init__.pyi new file mode 100644 index 00000000..e69de29b diff --git a/python/httpx/_httpx/urlparse.pyi b/python/httpx/_httpx/urlparse.pyi new file mode 100644 index 00000000..3c9f5e12 --- /dev/null +++ b/python/httpx/_httpx/urlparse.pyi @@ -0,0 +1,24 @@ +class ParseResult: + scheme: str + userinfo: str + host: str + port: int | None + path: str + query: str | None + fragment: str | None + + @property + def authority(self) -> str: ... + @property + def netloc(self) -> str: ... + def __str__(self) -> str: ... + def __new__( + cls, + scheme: str, + userinfo: str, + host: str, + port: int | None, + path: str, + query: str | None, + fragment: str | None, + ) -> ParseResult: ...