Lines Matching full:line
14 max_length: maximum acceptable line length as number
17 A list of tuples with format [(filename, line number, msg), ...] with any
22 for line in lines:
23 length = len(line.rstrip('\n'))
26 'Line exceeds %d chars (%d)' % (max_length, length)))
44 for line in lines:
45 if tab_re.match(line.rstrip('\n')):
59 A list of tuples with format [(filename, line number, msg), ...] with any
65 for line in lines:
66 if trailing_whitespace_re.match(line.rstrip('\n')):
85 A list of tuples with format [(filename, line number, msg), ...] with any