End the current block suppression on `linenum`. inclusive
(self, linenum)
| 1013 | self._AddSuppression(category, self._open_block_suppression) |
| 1014 | |
| 1015 | def EndBlockSuppression(self, linenum): |
| 1016 | """End the current block suppression on `linenum`. inclusive""" |
| 1017 | if self._open_block_suppression: |
| 1018 | self._open_block_suppression.end = linenum |
| 1019 | self._open_block_suppression = None |
| 1020 | |
| 1021 | def IsSuppressed(self, category, linenum): |
| 1022 | """:return: `True` if `category` is suppressed for `linenum`""" |