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