Fix positional-only differences in many stdlib modules (#7226)

This commit is contained in:
Alex Waygood
2022-02-15 14:14:06 +00:00
committed by GitHub
parent 32e9a0fbc1
commit f4967618dd
10 changed files with 23 additions and 23 deletions

View File

@@ -18,12 +18,12 @@ def ip_network(address: _RawIPAddress | _RawNetworkPart, strict: bool = ...) ->
def ip_interface(address: _RawIPAddress | _RawNetworkPart) -> IPv4Interface | IPv6Interface: ...
class _IPAddressBase:
def __eq__(self, other: object) -> bool: ...
def __ge__(self: Self, other: Self) -> bool: ...
def __gt__(self: Self, other: Self) -> bool: ...
def __le__(self: Self, other: Self) -> bool: ...
def __lt__(self: Self, other: Self) -> bool: ...
def __ne__(self, other: object) -> bool: ...
def __eq__(self, __other: object) -> bool: ...
def __ge__(self: Self, __other: Self) -> bool: ...
def __gt__(self: Self, __other: Self) -> bool: ...
def __le__(self: Self, __other: Self) -> bool: ...
def __lt__(self: Self, __other: Self) -> bool: ...
def __ne__(self, __other: object) -> bool: ...
@property
def compressed(self) -> str: ...
@property