mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-01 09:03:23 +08:00
Add compact keyword arg to pprint (#2162)
This commit is contained in:
committed by
Jelle Zijlstra
parent
2ba90a65c0
commit
226f0553fe
@@ -3,19 +3,35 @@
|
||||
# Based on http://docs.python.org/2/library/pprint.html
|
||||
# Based on http://docs.python.org/3/library/pprint.html
|
||||
|
||||
import sys
|
||||
from typing import Any, Dict, Tuple, IO
|
||||
|
||||
def pformat(o: object, indent: int = ..., width: int = ...,
|
||||
depth: int = ...) -> str: ...
|
||||
def pprint(o: object, stream: IO[str] = ..., indent: int = ..., width: int = ...,
|
||||
depth: int = ...) -> None: ...
|
||||
if sys.version_info >= (3, 4):
|
||||
def pformat(o: object, indent: int = ..., width: int = ...,
|
||||
depth: int = ..., compact: bool = ...) -> str: ...
|
||||
else:
|
||||
def pformat(o: object, indent: int = ..., width: int = ...,
|
||||
depth: int = ...) -> str: ...
|
||||
|
||||
if sys.version_info >= (3, 4):
|
||||
def pprint(o: object, stream: IO[str] = ..., indent: int = ..., width: int = ...,
|
||||
depth: int = ..., compact: bool = ...) -> None: ...
|
||||
else:
|
||||
def pprint(o: object, stream: IO[str] = ..., indent: int = ..., width: int = ...,
|
||||
depth: int = ...) -> None: ...
|
||||
|
||||
def isreadable(o: object) -> bool: ...
|
||||
def isrecursive(o: object) -> bool: ...
|
||||
def saferepr(o: object) -> str: ...
|
||||
|
||||
class PrettyPrinter:
|
||||
def __init__(self, indent: int = ..., width: int = ..., depth: int = ...,
|
||||
stream: IO[str] = ...) -> None: ...
|
||||
if sys.version_info >= (3, 4):
|
||||
def __init__(self, indent: int = ..., width: int = ..., depth: int = ...,
|
||||
stream: IO[str] = ..., compact: bool = ...) -> None: ...
|
||||
else:
|
||||
def __init__(self, indent: int = ..., width: int = ..., depth: int = ...,
|
||||
stream: IO[str] = ...) -> None: ...
|
||||
|
||||
def pformat(self, o: object) -> str: ...
|
||||
def pprint(self, o: object) -> None: ...
|
||||
def isreadable(self, o: object) -> bool: ...
|
||||
|
||||
Reference in New Issue
Block a user