]> granicus.if.org Git - python/commitdiff
Whitespace normalization.
authorTim Peters <tim.peters@gmail.com>
Wed, 25 Apr 2007 18:47:18 +0000 (18:47 +0000)
committerTim Peters <tim.peters@gmail.com>
Wed, 25 Apr 2007 18:47:18 +0000 (18:47 +0000)
Demo/parser/unparse.py

index 9ec9deb9d5c3fa8217e6b6025c2ea81dd6618c93..7acc05d93f40a3fc30d3985ef956af94926ba6d9 100644 (file)
@@ -10,7 +10,7 @@ def interleave(inter, f, seq):
     seq = iter(seq)
     try:
         f(seq.next())
-    except StopIteration: 
+    except StopIteration:
         pass
     else:
         for x in seq: