Sets the module's error statistic back to zero.
(self)
| 1472 | self.filters = self._filters_backup[:] |
| 1473 | |
| 1474 | def ResetErrorCounts(self): |
| 1475 | """Sets the module's error statistic back to zero.""" |
| 1476 | self.error_count = 0 |
| 1477 | self.errors_by_category = {} |
| 1478 | |
| 1479 | def IncrementErrorCount(self, category): |
| 1480 | """Bumps the module's error statistic.""" |