Add missing scope_id property to IPv6Address (#6399)

This commit is contained in:
Alex Waygood
2021-11-27 15:02:35 +00:00
committed by GitHub
parent e9afd22a99
commit f29d2bb72c

View File

@@ -127,6 +127,9 @@ class IPv6Address(_BaseAddress):
def sixtofour(self) -> IPv4Address | None: ...
@property
def teredo(self) -> tuple[IPv4Address, IPv4Address] | None: ...
if sys.version_info >= (3, 9):
@property
def scope_id(self) -> str | None: ...
class IPv6Network(_BaseNetwork[IPv6Address]):
@property