mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-23 04:11:28 +08:00
add (overwrite with) mypy stubs, if available
This commit is contained in:
21
stdlib/2.7/pprint.pyi
Normal file
21
stdlib/2.7/pprint.pyi
Normal file
@@ -0,0 +1,21 @@
|
||||
# Stubs for pprint (Python 2)
|
||||
#
|
||||
# NOTE: Based on a dynamically typed automatically generated by stubgen.
|
||||
|
||||
from typing import IO, Any
|
||||
|
||||
def pprint(object: Any, stream: IO[Any] = None, indent: int = 1, width: int = 80,
|
||||
depth: int = None) -> None: ...
|
||||
def pformat(object, indent=1, width=80, depth=None): ...
|
||||
def saferepr(object): ...
|
||||
def isreadable(object): ...
|
||||
def isrecursive(object): ...
|
||||
|
||||
class PrettyPrinter:
|
||||
def __init__(self, indent: int = 1, width: int = 80, depth: int = None,
|
||||
stream: IO[Any] = None) -> None: ...
|
||||
def pprint(self, object): ...
|
||||
def pformat(self, object): ...
|
||||
def isrecursive(self, object): ...
|
||||
def isreadable(self, object): ...
|
||||
def format(self, object, context, maxlevels, level): ...
|
||||
Reference in New Issue
Block a user