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

Function _print_dict

Lib/sysconfig/__main__.py:225–229  ·  view source on GitHub ↗
(title, data)

Source from the content-addressed store, hash-verified

223
224
225def _print_dict(title, data):
226 for index, (key, value) in enumerate(sorted(data.items())):
227 if index == 0:
228 print(f'{title}: ')
229 print(f'\t{key} = "{value}"')
230
231
232def _main():

Callers 1

_mainFunction · 0.85

Calls 2

enumerateFunction · 0.85
itemsMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…