(self, category, line_range)
| 1021 | self._open_block_suppression = None |
| 1022 | |
| 1023 | def _AddSuppression(self, category, line_range): |
| 1024 | suppressed = self._suppressions[category] |
| 1025 | if not (suppressed and suppressed[-1].ContainsRange(line_range)): |
| 1026 | suppressed.append(line_range) |
| 1027 | |
| 1028 | def GetOpenBlockStart(self): |
| 1029 | """:return: The start of the current open block or `-1` if there is not an open block""" |
no test coverage detected