[pprint] Add missing default values (#14453)

This commit is contained in:
Semyon Moroz
2025-07-26 03:40:03 +00:00
committed by GitHub
parent c97c3f0fd0
commit 8a6075ffcc
+11 -11
View File
@@ -29,25 +29,25 @@ else:
if sys.version_info >= (3, 10):
def pp(
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,
sort_dicts: bool = False,
underscore_numbers: bool = ...,
underscore_numbers: bool = False,
) -> None: ...
else:
def pp(
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,
sort_dicts: bool = False,
) -> None: ...