:return: `True` if a block suppression was started but not ended
(self)
| 1055 | return any(linenum in lr for lr in suppressed) |
| 1056 | |
| 1057 | def HasOpenBlock(self): |
| 1058 | """:return: `True` if a block suppression was started but not ended""" |
| 1059 | return self._open_block_suppression is not None |
| 1060 | |
| 1061 | def Clear(self): |
| 1062 | """Clear all current error suppressions""" |
no outgoing calls
no test coverage detected