diff options
author | Tim Peters <tim.peters@gmail.com> | 2006-03-04 02:43:44 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2006-03-04 02:43:44 (GMT) |
commit | 39e11fb104a31ae499816b2366af58a5e2b56454 (patch) | |
tree | 2289b731dd680626f34b5cfe33cfcbc2503732ed | |
parent | 7356dcb705984f4907d6b41c08a99b8eb78638c1 (diff) | |
download | cpython-39e11fb104a31ae499816b2366af58a5e2b56454.zip cpython-39e11fb104a31ae499816b2366af58a5e2b56454.tar.gz cpython-39e11fb104a31ae499816b2366af58a5e2b56454.tar.bz2 |
Whitespace normalization.
-rw-r--r-- | Lib/compiler/ast.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/compiler/ast.py b/Lib/compiler/ast.py index 7d1c18f..08e0c6a 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): |