Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
Index your code
hub
/
github.com/mitmproxy/mitmproxy
/ yaml_dumps
Function
yaml_dumps
mitmproxy/contentviews/_utils.py:74–79 ·
view source on GitHub ↗
(d: Any)
Source
from the content-addressed store, hash-verified
72
73
74
def
yaml_dumps(d: Any) -> str:
75
if
not d:
76
return
""
77
out = io.StringIO()
78
YAML(typ=
"rt"
, pure=True).dump(d, out)
79
return
out.getvalue()
80
81
82
def
yaml_loads(yaml: str) -> Any:
Callers
7
test_yaml_dumps
Function · 0.90
prettify
Method · 0.90
prettify
Method · 0.90
prettify
Method · 0.85
prettify
Method · 0.85
prettify
Method · 0.85
prettify
Method · 0.85
Calls
2
getvalue
Method · 0.80
dump
Method · 0.45
Tested by
1
test_yaml_dumps
Function · 0.72
Used in the wild
real call sites across dependent graphs
searching dependent graphs…