MCPcopy
hub / github.com/mitmproxy/mitmproxy / FNot

Class FNot

mitmproxy/flowfilter.py:548–557  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

546
547
548class FNot(_Token):
549 def __init__(self, itm):
550 self.itm = itm[0]
551
552 def dump(self, indent=0, fp=sys.stdout):
553 super().dump(indent, fp)
554 self.itm.dump(indent + 1, fp)
555
556 def __call__(self, f):
557 return not self.itm(f)
558
559
560filter_unary: Sequence[type[_Action]] = [

Callers 1

_makeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…