Lines Matching refs:line
402 self.templates = [self._parse_line(line) for line in file]
423 def _parse_line(self, line): argument
425 line = line.rstrip('\r\n')
426 m = re.match(self._config_line_regexp, line)
428 return line
431 return line
434 return line
441 return line
478 line = template
480 line = self._format_template(*template)
481 output.write(line + '\n')