Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/mitmproxy/mitmproxy
/ dump
Method
dump
mitmproxy/flowfilter.py:526–529 ·
view source on GitHub ↗
(self, indent=0, fp=sys.stdout)
Source
from the content-addressed store, hash-verified
524
self.lst = lst
525
526
def
dump(self, indent=0, fp=sys.stdout):
527
super().dump(indent, fp)
528
for
i in self.lst:
529
i.dump(indent + 1, fp)
530
531
def
__call__(self, f):
532
return
all(i(f)
for
i in self.lst)
Callers
nothing calls this directly
Calls
1
dump
Method · 0.45
Tested by
no test coverage detected