Sets the module's error statistic back to zero.
(self)
| 941 | self.filters = self._filters_backup[:] |
| 942 | |
| 943 | def ResetErrorCounts(self): |
| 944 | """Sets the module's error statistic back to zero.""" |
| 945 | self.error_count = 0 |
| 946 | self.errors_by_category = {} |
| 947 | |
| 948 | def IncrementErrorCount(self, category): |
| 949 | """Bumps the module's error statistic.""" |