End the current block suppression on `linenum`. inclusive
(self, linenum)
| 1044 | self._AddSuppression(category, self._open_block_suppression) |
| 1045 | |
| 1046 | def EndBlockSuppression(self, linenum): |
| 1047 | """End the current block suppression on `linenum`. inclusive""" |
| 1048 | if self._open_block_suppression: |
| 1049 | self._open_block_suppression.end = linenum |
| 1050 | self._open_block_suppression = None |
| 1051 | |
| 1052 | def IsSuppressed(self, category, linenum): |
| 1053 | """:return: `True` if `category` is suppressed for `linenum`""" |