summaryrefslogtreecommitdiffstats
path: root/Lib/compiler
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2006-02-28 18:30:36 (GMT)
committerTim Peters <tim.peters@gmail.com>2006-02-28 18:30:36 (GMT)
commit710ab3b5f8d114b9be200af135c6327117b8c676 (patch)
tree0b4d5f3eeac98a29e67ba966f26654f5fdf4b066 /Lib/compiler
parent08533fdad62197f4724f029c33b88975733f4045 (diff)
downloadcpython-710ab3b5f8d114b9be200af135c6327117b8c676.zip
cpython-710ab3b5f8d114b9be200af135c6327117b8c676.tar.gz
cpython-710ab3b5f8d114b9be200af135c6327117b8c676.tar.bz2
Whitespace normalization.
Diffstat (limited to 'Lib/compiler')
-rw-r--r--Lib/compiler/ast.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/compiler/ast.py b/Lib/compiler/ast.py
index e270995..6e3e182 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):