1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
|
import sys
from _typeshed import SupportsWrite
from collections import deque
from typing import IO
__all__ = ["pprint", "pformat", "isreadable", "isrecursive", "saferepr", "PrettyPrinter", "pp"]
if sys.version_info >= (3, 10):
def pformat(
object: object,
indent: int = 1,
width: int = 80,
depth: int | None = None,
*,
compact: bool = False,
sort_dicts: bool = True,
underscore_numbers: bool = False,
) -> str: ...
else:
def pformat(
object: object,
indent: int = 1,
width: int = 80,
depth: int | None = None,
*,
compact: bool = False,
sort_dicts: bool = True,
) -> str: ...
if sys.version_info >= (3, 10):
def pp(
object: object,
stream: IO[str] | None = None,
indent: int = 1,
width: int = 80,
depth: int | None = None,
*,
compact: bool = False,
sort_dicts: bool = False,
underscore_numbers: bool = False,
) -> None: ...
else:
def pp(
object: object,
stream: IO[str] | None = None,
indent: int = 1,
width: int = 80,
depth: int | None = None,
*,
compact: bool = False,
sort_dicts: bool = False,
) -> None: ...
if sys.version_info >= (3, 10):
def pprint(
object: object,
stream: IO[str] | None = None,
indent: int = 1,
width: int = 80,
depth: int | None = None,
*,
compact: bool = False,
sort_dicts: bool = True,
underscore_numbers: bool = False,
) -> None: ...
else:
def pprint(
object: object,
stream: IO[str] | None = None,
indent: int = 1,
width: int = 80,
depth: int | None = None,
*,
compact: bool = False,
sort_dicts: bool = True,
) -> 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 = 1,
width: int = 80,
depth: int | None = None,
stream: IO[str] | None = None,
*,
compact: bool = False,
sort_dicts: bool = True,
underscore_numbers: bool = False,
) -> None: ...
else:
def __init__(
self,
indent: int = 1,
width: int = 80,
depth: int | None = None,
stream: IO[str] | None = None,
*,
compact: bool = False,
sort_dicts: bool = True,
) -> 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, int], maxlevels: int, level: int) -> tuple[str, bool, bool]: ...
def _format(
self, object: object, stream: SupportsWrite[str], indent: int, allowance: int, context: dict[int, int], level: int
) -> None: ...
def _pprint_dict(
self,
object: dict[object, object],
stream: SupportsWrite[str],
indent: int,
allowance: int,
context: dict[int, int],
level: int,
) -> None: ...
def _pprint_list(
self, object: list[object], stream: SupportsWrite[str], indent: int, allowance: int, context: dict[int, int], level: int
) -> None: ...
def _pprint_tuple(
self,
object: tuple[object, ...],
stream: SupportsWrite[str],
indent: int,
allowance: int,
context: dict[int, int],
level: int,
) -> None: ...
def _pprint_set(
self, object: set[object], stream: SupportsWrite[str], indent: int, allowance: int, context: dict[int, int], level: int
) -> None: ...
def _pprint_deque(
self, object: deque[object], stream: SupportsWrite[str], indent: int, allowance: int, context: dict[int, int], level: int
) -> None: ...
def _format_dict_items(
self,
items: list[tuple[object, object]],
stream: SupportsWrite[str],
indent: int,
allowance: int,
context: dict[int, int],
level: int,
) -> None: ...
def _format_items(
self, items: list[object], stream: SupportsWrite[str], indent: int, allowance: int, context: dict[int, int], level: int
) -> None: ...
def _repr(self, object: object, context: dict[int, int], level: int) -> str: ...
if sys.version_info >= (3, 10):
def _safe_repr(self, object: object, context: dict[int, int], maxlevels: int, level: int) -> tuple[str, bool, bool]: ...
|