From a66303a2bf80d36be830a75ef0f06ccec9d6c757 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=91=D0=B0=D0=BA=D1=8B=D1=82=20=D0=9D=D0=B8=D1=8F=D0=B7?= =?UTF-8?q?=D0=B0=D0=BB=D0=B8=D0=B5=D0=B2?= Date: Wed, 11 Jun 2025 22:45:02 +0700 Subject: [PATCH] feat: add missing newlines for improved readability in ParseResult class --- python/httpx/_httpx/urlparse.pyi | 3 +++ 1 file changed, 3 insertions(+) diff --git a/python/httpx/_httpx/urlparse.pyi b/python/httpx/_httpx/urlparse.pyi index 3c9f5e12..a3c8603e 100644 --- a/python/httpx/_httpx/urlparse.pyi +++ b/python/httpx/_httpx/urlparse.pyi @@ -9,9 +9,12 @@ class ParseResult: @property def authority(self) -> str: ... + @property def netloc(self) -> str: ... + def __str__(self) -> str: ... + def __new__( cls, scheme: str,