Pretty-print a Python object
(object, *args, sort_dicts=False, **kwargs)
| 62 | underscore_numbers=underscore_numbers).pformat(object) |
| 63 | |
| 64 | def pp(object, *args, sort_dicts=False, **kwargs): |
| 65 | """Pretty-print a Python object""" |
| 66 | pprint(object, *args, sort_dicts=sort_dicts, **kwargs) |
| 67 | |
| 68 | def saferepr(object): |
| 69 | """Version of repr() which can handle recursive data structures.""" |