MCPcopy Create free account
hub / github.com/microsoft/debugpy / __and__

Method __and__

tests/timeline.py:682–684  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

680 return any(exp.has_lower_bound for exp in self.expectations)
681
682 def __and__(self, other):
683 assert isinstance(other, Expectation)
684 return AndExpectation(*(self.expectations + (other,)))
685
686 def __repr__(self):
687 return "(" + " & ".join(repr(exp) for exp in self.expectations) + ")"

Callers

nothing calls this directly

Calls 1

AndExpectationClass · 0.85

Tested by

no test coverage detected