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

Method pprint

Lib/pprint.py:172–175  ·  view source on GitHub ↗
(self, object)

Source from the content-addressed store, hash-verified

170 self._underscore_numbers = underscore_numbers
171
172 def pprint(self, object):
173 if self._stream is not None:
174 self._format(object, self._stream, 0, 0, {}, 0)
175 self._stream.write("\n")
176
177 def pformat(self, object):
178 sio = _StringIO()

Callers 7

pprintFunction · 0.95
mainFunction · 0.45
_mainFunction · 0.45
parse_filesFunction · 0.45
parsing.pyFile · 0.45
mainFunction · 0.45
buildPythonFunction · 0.45

Calls 2

_formatMethod · 0.95
writeMethod · 0.45

Tested by

no test coverage detected