base.py | 21 has_unexpected_output = self.has_unexpected_output(output) 22 return self._create_result(has_unexpected_output, output, reduction) 24 def has_unexpected_output(self, output): member in class:BaseOutProc 27 def _create_result(self, has_unexpected_output, output, reduction): 35 return Result(has_unexpected_output, None) 36 if not has_unexpected_output: 38 return Result(has_unexpected_output, None) 40 return Result(has_unexpected_output, output.without_text()) 42 return Result(has_unexpected_output, output 80 def has_unexpected_output(self, output): member in class:PassOutProc [all...] |