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 (23 lines) | stat: -rw-r--r-- 934 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
# Stubs for pprint

# Based on http://docs.python.org/3.2/library/pprint.html

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: ...
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: ...
    def pformat(self, o: object) -> str: ...
    def pprint(self, o: object) -> None: ...
    def isreadable(self, o: object) -> bool: ...
    def isrecursive(self, o: object) -> bool: ...
    def format(self, o: object, context: Dict[int, Any], maxlevels: int,
               level: int) -> Tuple[str, bool, bool]: ...