MCPcopy 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
74def 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
82def yaml_loads(yaml: str) -> Any:

Callers 7

test_yaml_dumpsFunction · 0.90
prettifyMethod · 0.90
prettifyMethod · 0.90
prettifyMethod · 0.85
prettifyMethod · 0.85
prettifyMethod · 0.85
prettifyMethod · 0.85

Calls 2

getvalueMethod · 0.80
dumpMethod · 0.45

Tested by 1

test_yaml_dumpsFunction · 0.72

Used in the wild real call sites across dependent graphs

searching dependent graphs…