Stdlib: correct many parameter names (#9815)

This commit is contained in:
Alex Waygood
2023-03-04 09:53:12 +00:00
committed by GitHub
parent 4b755c7034
commit 257e287fec
30 changed files with 382 additions and 353 deletions

View File

@@ -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):