MCPcopy Index your code
hub / github.com/mitmproxy/mitmproxy / dump

Method dump

mitmproxy/flowfilter.py:72–80  ·  view source on GitHub ↗
(self, indent=0, fp=sys.stdout)

Source from the content-addressed store, hash-verified

70
71class _Token:
72 def dump(self, indent=0, fp=sys.stdout):
73 print(
74 "{spacing}{name}{expr}".format(
75 spacing="\t" * indent,
76 name=self.__class__.__name__,
77 expr=getattr(self, "expr", ""),
78 ),
79 file=fp,
80 )
81
82
83class _Action(_Token):

Callers

nothing calls this directly

Calls 1

formatMethod · 0.80

Tested by

no test coverage detected