| |
- PrettyPrinter
- _Recursion
class PrettyPrinter |
|
no doc string |
| |
- __format(self, object, stream, indent, allowance, context, level)
- no doc string
- __repr(self, object, context, level)
- no doc string
- __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.
- isreadable(self, object)
- no doc string
- isrecursive(self, object)
- no doc string
- pformat(self, object)
- no doc string
- pprint(self, object)
- no doc string
|
|