mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-05-06 21:43:59 +08:00
[pprint] Add missing default values (#14453)
This commit is contained in:
+11
-11
@@ -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: ...
|
||||
|
||||
|
||||
Reference in New Issue
Block a user