(self, want, got, optionflags)
| 132 | |
| 133 | class CustomOutputChecker(OutputChecker): |
| 134 | def check_output(self, want, got, optionflags): |
| 135 | if IGNORE_RESULT & optionflags: |
| 136 | return True |
| 137 | return OutputChecker.check_output(self, want, got, optionflags) |
| 138 | |
| 139 | |
| 140 | doctest.OutputChecker = CustomOutputChecker |
no outgoing calls
no test coverage detected