MCPcopy Index your code
hub / github.com/python/cpython / pp

Function pp

Lib/pprint.py:66–68  ·  view source on GitHub ↗

Pretty-print a Python object

(object, *args, sort_dicts=False, **kwargs)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

pprintFunction · 0.70

Tested by

no test coverage detected