mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-04 10:33:51 +08:00
Stdlib: correct many parameter names (#9815)
This commit is contained in:
@@ -36,7 +36,9 @@ class _BaseAddress(_IPAddressBase, SupportsInt):
|
||||
def __add__(self, other: int) -> Self: ...
|
||||
def __int__(self) -> int: ...
|
||||
def __sub__(self, other: int) -> Self: ...
|
||||
def __format__(self, fmt: str) -> str: ...
|
||||
if sys.version_info >= (3, 9):
|
||||
def __format__(self, fmt: str) -> str: ...
|
||||
|
||||
def __eq__(self, other: object) -> bool: ...
|
||||
def __lt__(self, other: Self) -> bool: ...
|
||||
if sys.version_info >= (3, 11):
|
||||
|
||||
Reference in New Issue
Block a user