Sets the module's error statistic back to zero.
(self)
| 1517 | self.filters = self._filters_backup[:] |
| 1518 | |
| 1519 | def ResetErrorCounts(self): |
| 1520 | """Sets the module's error statistic back to zero.""" |
| 1521 | self.error_count = 0 |
| 1522 | self.errors_by_category = {} |
| 1523 | |
| 1524 | def IncrementErrorCount(self, category): |
| 1525 | """Bumps the module's error statistic.""" |