Lines Matching full:line
78 line = self.fp.readline()
80 if not line:
88 if self.is_data(line):
89 return line
92 marker = line.rstrip()
94 # Return the line (unstripped) if we don't.
103 return line
104 # We only get here if we see a section divider or EOM line
106 self.lastpos = self.tell() - len(line)
115 line = self.readline()
116 if not line: break
117 list.append(line)
155 def is_data(self, line):
156 return line[:2] != '--'