Merge with 3.3

This commit is contained in:
Terry Jan Reedy 2014-02-23 23:40:16 -05:00
commit 58719a7de7
1 changed files with 1 additions and 1 deletions

View File

@ -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