Sets the module's error statistic back to zero.
(self)
| 1343 | self.filters = self._filters_backup[:] |
| 1344 | |
| 1345 | def ResetErrorCounts(self): |
| 1346 | """Sets the module's error statistic back to zero.""" |
| 1347 | self.error_count = 0 |
| 1348 | self.errors_by_category = {} |
| 1349 | |
| 1350 | def IncrementErrorCount(self, category): |
| 1351 | """Bumps the module's error statistic.""" |