(self)
| 80 | self.WarningValue = 1 |
| 81 | self.Warnings[warning] = 1 |
| 82 | def PrintErrors(self): |
| 83 | if self.ErrorValue: |
| 84 | self.Print( ) |
| 85 | self.Print( "There were errors:" ) |
| 86 | for a in self.Errors: |
| 87 | self.Print( "* %s" % a ) |
| 88 | def PrintWarnings(self): |
| 89 | if self.WarningValue: |
| 90 | self.Print( ) |