File: pprint.pyi

package info (click to toggle)
mypy 0.470-complete-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 5,864 kB
  • ctags: 3,264
  • sloc: python: 21,838; makefile: 18
file content (24 lines) | stat: -rw-r--r-- 855 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# 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[str] = ..., indent: int = ..., width: int = ...,
           depth: int = ...) -> None: ...
def pformat(object: Any, indent: int =..., width: int =..., depth: int =...) -> str: ...
def saferepr(object): ...
def isreadable(object): ...
def isrecursive(object): ...

class PrettyPrinter:
    def __init__(self,
                 indent: int = ...,
                 width: int = ...,
                 depth: int = ...,
                 stream: IO[Any] = ...) -> None: ...
    def pprint(self, object: Any) -> str: ...
    def pformat(self, object): ...
    def isrecursive(self, object): ...
    def isreadable(self, object): ...
    def format(self, object, context, maxlevels, level): ...