:return: `True` if a block suppression was started but not ended
(self)
| 1024 | return any(linenum in lr for lr in suppressed) |
| 1025 | |
| 1026 | def HasOpenBlock(self): |
| 1027 | """:return: `True` if a block suppression was started but not ended""" |
| 1028 | return self._open_block_suppression is not None |
| 1029 | |
| 1030 | def Clear(self): |
| 1031 | """Clear all current error suppressions""" |
no outgoing calls
no test coverage detected