[Python-checkins] cpython: Normalize whitespace

eli.bendersky python-checkins at python.org
Thu Sep 26 15:33:19 CEST 2013


http://hg.python.org/cpython/rev/636615849c32
changeset:   85800:636615849c32
user:        Eli Bendersky <eliben at gmail.com>
date:        Thu Sep 26 06:32:22 2013 -0700
summary:
  Normalize whitespace

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


diff --git a/Parser/asdl.py b/Parser/asdl.py
--- a/Parser/asdl.py
+++ b/Parser/asdl.py
@@ -399,7 +399,7 @@
     parser = ASDLParser()
 
     with open(file) as f:
-       buf = f.read()
+        buf = f.read()
     tokens = scanner.tokenize(buf)
     try:
         return parser.parse(tokens)

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


More information about the Python-checkins mailing list