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

Function _print_config_dict

Lib/sysconfig/__main__.py:130–134  ·  view source on GitHub ↗
(d, stream)

Source from the content-addressed store, hash-verified

128
129
130def _print_config_dict(d, stream):
131 print ("{", file=stream)
132 for k, v in sorted(d.items()):
133 print(f" {k!r}: {v!r},", file=stream)
134 print ("}", file=stream)
135
136
137def _get_pybuilddir():

Callers 1

_generate_posix_varsFunction · 0.85

Calls 1

itemsMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…