Commit 58719a7d authored by Terry Jan Reedy's avatar Terry Jan Reedy

Merge with 3.3

parents 40f8c677 f106f8f2
......@@ -235,7 +235,7 @@ class Untokenizer:
raise ValueError("start ({},{}) precedes previous end ({},{})"
.format(row, col, self.prev_row, self.prev_col))
row_offset = row - self.prev_row
if row_offset:
if row_offset:
self.tokens.append("\\\n" * row_offset)
self.prev_col = 0
col_offset = col - self.prev_col
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment