(self)
| 86 | for a in self.Errors: |
| 87 | self.Print( "* %s" % a ) |
| 88 | def PrintWarnings(self): |
| 89 | if self.WarningValue: |
| 90 | self.Print( ) |
| 91 | self.Print( "There were warnings:" ) |
| 92 | for a in self.Warnings: |
| 93 | self.Print( "* %s" % a ) |
| 94 | |
| 95 | def TestFile(self, filename): |
| 96 | self.FileName = filename |