(self)
| 1402 | self.profile = Profile() |
| 1403 | |
| 1404 | def readline(self): |
| 1405 | # Override LineParser.readline to ignore comment lines |
| 1406 | while True: |
| 1407 | LineParser.readline(self) |
| 1408 | if self.eof() or not self.lookahead().startswith('#'): |
| 1409 | break |
| 1410 | |
| 1411 | def parse(self): |
| 1412 | # read lookahead |
no test coverage detected