Vega strike Python Modules doc
0.5.1
Documentation of the " Modules " folder of Vega strike
|
Public Member Functions | |
def | __init__ |
def | pprint |
def | pformat |
def | isrecursive |
def | isreadable |
def __init__ | ( | self, | |
indent = 1 , |
|||
width = 80 , |
|||
depth = None , |
|||
stream = None |
|||
) |
Handle pretty printing operations onto a stream using a set of configured parameters. indent Number of spaces to indent for each level of nesting. width Attempted maximum number of columns in the output. depth The maximum depth to print out nested structures. stream The desired output stream. If omitted (or false), the standard output stream available at construction will be used.
Definition at line 78 of file pprint.py.
References PrettyPrinter.__depth, PrettyPrinter.__indent_per_level, PrettyPrinter.__stream, and PrettyPrinter.__width.
def isreadable | ( | self, | |
object | |||
) |
Definition at line 122 of file pprint.py.
References PrettyPrinter.__depth, PrettyPrinter.__format(), PrettyPrinter.__indent_per_level, PrettyPrinter.__readable, PrettyPrinter.__recursive, PrettyPrinter.__repr(), PrettyPrinter.__width, pprint._commajoin, pprint._id, pprint._len, pprint._type, reconvert.append, and pprint.saferepr().
def isrecursive | ( | self, | |
object | |||
) |
Definition at line 117 of file pprint.py.
References PrettyPrinter.__recursive, and PrettyPrinter.__repr().
def pformat | ( | self, | |
object | |||
) |
def pprint | ( | self, | |
object | |||
) |