Home | History | Annotate | Download | only in python2.7

Lines Matching refs:lineno

213     def append(self, lineno, line):
214 self.errors.append((lineno, line))
215 self.message += '\n\t[line %2d]: %s' % (lineno, line)
220 def __init__(self, filename, lineno, line):
224 (filename, lineno, line))
226 self.lineno = lineno
228 self.args = (filename, lineno, line)
476 lineno = 0
482 lineno = lineno + 1
512 raise MissingSectionHeaderError(fpname, lineno, line)
543 e.append(lineno, repr(line))