Sets the module's error statistic back to zero.
(self)
| 1328 | self.filters = self._filters_backup[:] |
| 1329 | |
| 1330 | def ResetErrorCounts(self): |
| 1331 | """Sets the module's error statistic back to zero.""" |
| 1332 | self.error_count = 0 |
| 1333 | self.errors_by_category = {} |
| 1334 | |
| 1335 | def IncrementErrorCount(self, category): |
| 1336 | """Bumps the module's error statistic.""" |