Home | History | Annotate | Download | only in distutils

Lines Matching refs:lines

5 lines, and joining lines with backslashes."""
17 comment character), skip blank lines, join adjacent lines by
24 spans multiple physical lines. Also provides 'unreadline()' for
49 skip lines that are empty *after* stripping comments and
51 then some lines may consist of solely whitespace: these will
56 to it to form one "logical line"; if N consecutive lines end
57 with a backslash, then N+1 physical lines will be joined to
60 strip leading whitespace from lines that are joined to their
109 # 'linebuf' is a stack of lines that will be emptied before we
140 outmsg.append("lines %d-%d: " % tuple (line))
153 file spans multiple physical lines, the warning refers to the
154 whole range, eg. "lines 3-5". If 'line' supplied, it overrides
156 range of physical lines, or an integer for a single physical
163 from an internal buffer if lines have previously been "unread"
165 may involve reading multiple physical lines concatenated into a
172 # If any "unread" lines waiting in 'linebuf', return the top
173 # one. (We don't actually buffer read-ahead data -- lines only
288 """Read and return the list of all logical lines remaining in the
291 lines = []
295 return lines
296 lines.append (line)