Lines Matching refs:prefix
103 x.prefix = ""
104 T.prefix = " "
107 test.prefix = " "
109 test.prefix = node.prefix
114 one.replace(Name("True", prefix=one.prefix))
123 list_call.replace(Name("sorted", prefix=list_call.prefix))
126 new.prefix = ""
128 prefix=simple_expr.prefix))
133 btwn = sort_stmt.prefix
134 # Keep any prefix lines between the sort_stmt and the list_call and
138 # The new prefix should be everything from the sort_stmt's
139 # prefix up to the last newline, then the old prefix after a new
141 prefix_lines = (btwn.rpartition("\n")[0], next_stmt[0].prefix)
142 next_stmt[0].prefix = "\n".join(prefix_lines)
146 # Put a blank line after list_call and set its prefix.
150 # The new prefix should be everything up to the first new line
151 # of sort_stmt's prefix.
152 end_line.prefix = btwn.rpartition("\n")[0]