Pretty-print a Python object
(object, *args, sort_dicts=False, **kwargs)
| 62 | |
| 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 | |
| 69 | def saferepr(object): |