[Python-checkins] cpython (3.3): whitespace

terry.reedy python-checkins at python.org
Mon Feb 24 05:40:46 CET 2014


http://hg.python.org/cpython/rev/eb3c819f4841
changeset:   89355:eb3c819f4841
branch:      3.3
parent:      89353:24b4cd5695d9
user:        Terry Jan Reedy <tjreedy at udel.edu>
date:        Sun Feb 23 23:39:57 2014 -0500
summary:
  whitespace

files:
  Lib/tokenize.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/tokenize.py b/Lib/tokenize.py
--- a/Lib/tokenize.py
+++ b/Lib/tokenize.py
@@ -235,7 +235,7 @@
             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

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list