Pretty-print a Python object
(object, *args, sort_dicts=False, **kwargs)
| 64 | |
| 65 | |
| 66 | def pp(object, *args, sort_dicts=False, **kwargs): |
| 67 | """Pretty-print a Python object""" |
| 68 | pprint(object, *args, sort_dicts=sort_dicts, **kwargs) |
| 69 | |
| 70 | |
| 71 | def saferepr(object): |