Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
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
225
def
_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
232
def
_main():
Callers
1
_main
Function · 0.85
Calls
2
enumerate
Function · 0.85
items
Method · 0.45
Tested by
no test coverage detected
Used in the wild
real call sites across dependent graphs
searching dependent graphs…