Sets the module's error statistic back to zero.
(self)
| 744 | ' (%s does not)' % filt) |
| 745 | |
| 746 | def ResetErrorCounts(self): |
| 747 | """Sets the module's error statistic back to zero.""" |
| 748 | self.error_count = 0 |
| 749 | self.errors_by_category = {} |
| 750 | |
| 751 | def IncrementErrorCount(self, category): |
| 752 | """Bumps the module's error statistic.""" |