Home | History | Annotate | Download | only in fixes

Lines Matching refs:prefix

103         x.prefix = u""
104 T.prefix = u" "
107 test.prefix = u" "
109 test.prefix = node.prefix
114 one.replace(Name(u"True", prefix=one.prefix))
123 list_call.replace(Name(u"sorted", prefix=list_call.prefix))
126 new.prefix = u""
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(u"\n")[0], next_stmt[0].prefix)
142 next_stmt[0].prefix = u"\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(u"\n")[0]