MCPcopy Index your code
hub / github.com/RustPython/RustPython / _print_config_dict

Function _print_config_dict

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

Source from the content-addressed store, hash-verified

154
155
156def _print_config_dict(d, stream):
157 print ("{", file=stream)
158 for k, v in sorted(d.items()):
159 print(f" {k!r}: {v!r},", file=stream)
160 print ("}", file=stream)
161
162
163def _get_pybuilddir():

Callers 1

_generate_posix_varsFunction · 0.85

Calls 3

sortedFunction · 0.85
printFunction · 0.50
itemsMethod · 0.45

Tested by

no test coverage detected