string
|
_commajoin(S,
sequence)
Return a string which is the concatenation of the strings in the
sequence. |
|
|
|
pprint(object,
stream=None,
indent=1,
width=80,
depth=None)
Pretty-print a Python object to a stream [default is sys.stdout]. |
|
|
|
pformat(object,
indent=1,
width=80,
depth=None)
Format a Python object into a pretty-printed representation. |
|
|
|
saferepr(object)
Version of repr() which can handle recursive data structures. |
|
|
|
isreadable(object)
Determine if saferepr(object) is readable by eval(). |
|
|
|
isrecursive(object)
Determine if object requires a recursive representation. |
|
|
|
_safe_repr(object,
context,
maxlevels,
level) |
|
|
|
|
|
|