(self, line=None)
| 42 | "Have we read our first non-comment line yet?" |
| 43 | |
| 44 | def output_line(self, line=None): |
| 45 | if line: |
| 46 | self.output_lines.append(line) |
| 47 | else: |
| 48 | self.output_lines.append("") |
| 49 | |
| 50 | def output_normal_line(self, line): |
| 51 | # flush any comment lines we had stored and output this line. |
no test coverage detected