Home | History | Annotate | Download | only in py_utils

Lines Matching refs:reason

13   def __init__(self, reason, test, conditions, results):
17 reason: String that indicates the reason for disabling.
23 assert isinstance(reason, basestring) or reason is None
24 self._reason = reason
33 return (self.reason == other.reason and
39 def reason(self):
108 reason, raw_conditions, test, results, _ = match.groups()
116 return Expectation(reason, test, conditions, [r for r in results.split()])