From 710ab3b5f8d114b9be200af135c6327117b8c676 Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Tue, 28 Feb 2006 18:30:36 +0000 Subject: Whitespace normalization. --- Lib/compiler/ast.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Lib/compiler') diff --git a/Lib/compiler/ast.py b/Lib/compiler/ast.py index e270995fa8..6e3e182571 100644 --- a/Lib/compiler/ast.py +++ b/Lib/compiler/ast.py @@ -553,7 +553,7 @@ class Function(Node): self.varargs = 1 if flags & CO_VARKEYWORDS: self.kwargs = 1 - + def getChildren(self): @@ -584,7 +584,7 @@ class GenExpr(Node): self.lineno = lineno self.argnames = ['[outmost-iterable]'] self.varargs = self.kwargs = None - + def getChildren(self): @@ -763,7 +763,7 @@ class Lambda(Node): self.varargs = 1 if flags & CO_VARKEYWORDS: self.kwargs = 1 - + def getChildren(self): -- cgit v1.2.1