Lines Matching refs:lines
27 "Temporary storage for contiguous comment lines."
30 "Temporary storage for empty lines following a comment."
33 "Fully-processed output lines."
39 "Whether we allow blank lines between a comment and the thing it's considered to document."
51 # flush any comment lines we had stored and output this line.
87 lines = [extract(line) for line in self.comment_lines]
90 while lines and not lines[0].strip():
91 lines.pop(0)
94 while lines and not lines[-1].strip():
95 lines.pop()
99 and len(lines) == 1 \
100 and '"' not in lines[0]:
104 lines[0] = quote + lines[0]
105 lines[-1] = lines[-1] + quote
107 # Output lines, indenting content as required.
108 for line in lines:
112 # Don't indent empty comment lines
115 # Clear stored comment lines since we processed them
120 # If we had blank lines between comment lines, they are separate blocks
127 Contiguous empty lines between a comment and something documentable do not
129 We have someplace else to store these lines in case there isn't something
192 help='Allow blank lines between a comment and a define and still convert that comment.')