Lines Matching refs:text
15 def _empty_line_or_comment(text): argument
16 return text.strip() == "" or text.startswith("#")
20 def check_line(self, lineno, text): argument
21 if _empty_line_or_comment(text):
24 fields = text.split()
28 text]
35 def check_line(self, lineno, text): argument
36 if _empty_line_or_comment(text):
39 fields = text.split()
49 text]
54 text,