Files
typeshed/stdlib/pprint.pyi
Akuli 17dcea4a68 Akuli and srittau: Remove Python 2 branches from Python 3 stubs (#5461)
* run script and do some manual changes (Akuli)

* do the whole thing manually (srittau)

* merge changes (Akuli)

Co-authored-by: Sebastian Rittau <srittau@rittau.biz>
2021-05-15 15:33:39 +03:00

136 lines
3.6 KiB
Python

import sys
from typing import IO, Any, Dict, Optional, Tuple
if sys.version_info >= (3, 10):
def pformat(
object: object,
indent: int = ...,
width: int = ...,
depth: Optional[int] = ...,
*,
compact: bool = ...,
sort_dicts: bool = ...,
underscore_numbers: bool = ...,
) -> str: ...
elif sys.version_info >= (3, 8):
def pformat(
object: object,
indent: int = ...,
width: int = ...,
depth: Optional[int] = ...,
*,
compact: bool = ...,
sort_dicts: bool = ...,
) -> str: ...
else:
def pformat(
object: object, indent: int = ..., width: int = ..., depth: Optional[int] = ..., *, compact: bool = ...
) -> str: ...
if sys.version_info >= (3, 10):
def pp(
object: object,
stream: Optional[IO[str]] = ...,
indent: int = ...,
width: int = ...,
depth: Optional[int] = ...,
*,
compact: bool = ...,
sort_dicts: bool = ...,
underscore_numbers: bool = ...,
) -> None: ...
elif sys.version_info >= (3, 8):
def pp(
object: object,
stream: Optional[IO[str]] = ...,
indent: int = ...,
width: int = ...,
depth: Optional[int] = ...,
*,
compact: bool = ...,
sort_dicts: bool = ...,
) -> None: ...
if sys.version_info >= (3, 10):
def pprint(
object: object,
stream: Optional[IO[str]] = ...,
indent: int = ...,
width: int = ...,
depth: Optional[int] = ...,
*,
compact: bool = ...,
sort_dicts: bool = ...,
underscore_numbers: bool = ...,
) -> None: ...
elif sys.version_info >= (3, 8):
def pprint(
object: object,
stream: Optional[IO[str]] = ...,
indent: int = ...,
width: int = ...,
depth: Optional[int] = ...,
*,
compact: bool = ...,
sort_dicts: bool = ...,
) -> None: ...
else:
def pprint(
object: object,
stream: Optional[IO[str]] = ...,
indent: int = ...,
width: int = ...,
depth: Optional[int] = ...,
*,
compact: bool = ...,
) -> None: ...
def isreadable(object: object) -> bool: ...
def isrecursive(object: object) -> bool: ...
def saferepr(object: object) -> str: ...
class PrettyPrinter:
if sys.version_info >= (3, 10):
def __init__(
self,
indent: int = ...,
width: int = ...,
depth: Optional[int] = ...,
stream: Optional[IO[str]] = ...,
*,
compact: bool = ...,
sort_dicts: bool = ...,
underscore_numbers: bool = ...,
) -> None: ...
elif sys.version_info >= (3, 8):
def __init__(
self,
indent: int = ...,
width: int = ...,
depth: Optional[int] = ...,
stream: Optional[IO[str]] = ...,
*,
compact: bool = ...,
sort_dicts: bool = ...,
) -> None: ...
else:
def __init__(
self,
indent: int = ...,
width: int = ...,
depth: Optional[int] = ...,
stream: Optional[IO[str]] = ...,
*,
compact: bool = ...,
) -> None: ...
def pformat(self, object: object) -> str: ...
def pprint(self, object: object) -> None: ...
def isreadable(self, object: object) -> bool: ...
def isrecursive(self, object: object) -> bool: ...
def format(self, object: object, context: Dict[int, Any], maxlevels: int, level: int) -> Tuple[str, bool, bool]: ...