mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 04:54:47 +08:00
Fix positional-only differences in many stdlib modules (#7226)
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user