Add more defaults to the stdlib (#9606)

Continuing work towards #8988.

The first five commits were created using stubdefaulter on various Python versions; the following commits were all created manually by me to fix various problems. The main things this adds that weren't present in #9501 are:

- Defaults in Windows-only modules and Windows-only branches (because I'm running a Windows machine)
- Defaults in non-py311 branches
- Defaults for float parameters
- Defaults for overloads
This commit is contained in:
Alex Waygood
2023-01-29 01:51:23 +00:00
committed by GitHub
parent 25e02db42c
commit 33a62ae42d
150 changed files with 2761 additions and 2704 deletions

View File

@@ -21,16 +21,16 @@ if sys.version_info >= (3, 10):
elif sys.version_info >= (3, 8):
def pformat(
object: object,
indent: int = ...,
width: int = ...,
depth: int | None = ...,
indent: int = 1,
width: int = 80,
depth: int | None = None,
*,
compact: bool = ...,
sort_dicts: bool = ...,
compact: bool = False,
sort_dicts: bool = True,
) -> str: ...
else:
def pformat(object: object, indent: int = ..., width: int = ..., depth: int | None = ..., *, compact: bool = ...) -> str: ...
def pformat(object: object, indent: int = 1, width: int = 80, depth: int | None = None, *, compact: bool = False) -> str: ...
if sys.version_info >= (3, 10):
def pp(
@@ -54,7 +54,7 @@ elif sys.version_info >= (3, 8):
depth: int | None = ...,
*,
compact: bool = ...,
sort_dicts: bool = ...,
sort_dicts: bool = False,
) -> None: ...
if sys.version_info >= (3, 10):
@@ -73,24 +73,24 @@ if sys.version_info >= (3, 10):
elif sys.version_info >= (3, 8):
def pprint(
object: object,
stream: IO[str] | None = ...,
indent: int = ...,
width: int = ...,
depth: int | None = ...,
stream: IO[str] | None = None,
indent: int = 1,
width: int = 80,
depth: int | None = None,
*,
compact: bool = ...,
sort_dicts: bool = ...,
compact: bool = False,
sort_dicts: bool = True,
) -> None: ...
else:
def pprint(
object: object,
stream: IO[str] | None = ...,
indent: int = ...,
width: int = ...,
depth: int | None = ...,
stream: IO[str] | None = None,
indent: int = 1,
width: int = 80,
depth: int | None = None,
*,
compact: bool = ...,
compact: bool = False,
) -> None: ...
def isreadable(object: object) -> bool: ...
@@ -113,23 +113,23 @@ class PrettyPrinter:
elif sys.version_info >= (3, 8):
def __init__(
self,
indent: int = ...,
width: int = ...,
depth: int | None = ...,
stream: IO[str] | None = ...,
indent: int = 1,
width: int = 80,
depth: int | None = None,
stream: IO[str] | None = None,
*,
compact: bool = ...,
sort_dicts: bool = ...,
compact: bool = False,
sort_dicts: bool = True,
) -> None: ...
else:
def __init__(
self,
indent: int = ...,
width: int = ...,
depth: int | None = ...,
stream: IO[str] | None = ...,
indent: int = 1,
width: int = 80,
depth: int | None = None,
stream: IO[str] | None = None,
*,
compact: bool = ...,
compact: bool = False,
) -> None: ...
def pformat(self, object: object) -> str: ...