[Python-checkins] r42825 - python/trunk/Lib/compiler/ast.py

tim.peters python-checkins at python.org
Sat Mar 4 03:43:55 CET 2006


Author: tim.peters
Date: Sat Mar  4 03:43:44 2006
New Revision: 42825

Modified:
   python/trunk/Lib/compiler/ast.py
Log:
Whitespace normalization.


Modified: python/trunk/Lib/compiler/ast.py
==============================================================================
--- python/trunk/Lib/compiler/ast.py	(original)
+++ python/trunk/Lib/compiler/ast.py	Sat Mar  4 03:43:44 2006
@@ -554,7 +554,7 @@
             self.varargs = 1
         if flags & CO_VARKEYWORDS:
             self.kwargs = 1
-    
+
 
 
     def getChildren(self):
@@ -585,7 +585,7 @@
         self.lineno = lineno
         self.argnames = ['[outmost-iterable]']
         self.varargs = self.kwargs = None
-    
+
 
 
     def getChildren(self):
@@ -780,7 +780,7 @@
             self.varargs = 1
         if flags & CO_VARKEYWORDS:
             self.kwargs = 1
-    
+
 
 
     def getChildren(self):


More information about the Python-checkins mailing list