From: Tim Peters Date: Sat, 4 Mar 2006 02:43:44 +0000 (+0000) Subject: Whitespace normalization. X-Git-Tag: v2.5a0~377 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=39e11fb104a31ae499816b2366af58a5e2b56454;p=thirdparty%2FPython%2Fcpython.git Whitespace normalization. --- diff --git a/Lib/compiler/ast.py b/Lib/compiler/ast.py index 7d1c18fed4eb..08e0c6a4460c 100644 --- a/Lib/compiler/ast.py +++ b/Lib/compiler/ast.py @@ -554,7 +554,7 @@ class Function(Node): self.varargs = 1 if flags & CO_VARKEYWORDS: self.kwargs = 1 - + def getChildren(self): @@ -585,7 +585,7 @@ class GenExpr(Node): self.lineno = lineno self.argnames = ['[outmost-iterable]'] self.varargs = self.kwargs = None - + def getChildren(self): @@ -780,7 +780,7 @@ class Lambda(Node): self.varargs = 1 if flags & CO_VARKEYWORDS: self.kwargs = 1 - + def getChildren(self):