Start a suppression block for `category` on `linenum`. inclusive
(self, category, linenum)
| 1038 | self._AddSuppression(category, self.LineRange(linenum, linenum)) |
| 1039 | |
| 1040 | def StartBlockSuppression(self, category, linenum): |
| 1041 | """Start a suppression block for `category` on `linenum`. inclusive""" |
| 1042 | if self._open_block_suppression is None: |
| 1043 | self._open_block_suppression = self.LineRange(linenum, math.inf) |
| 1044 | self._AddSuppression(category, self._open_block_suppression) |
| 1045 | |
| 1046 | def EndBlockSuppression(self, linenum): |
| 1047 | """End the current block suppression on `linenum`. inclusive""" |
no test coverage detected