summaryrefslogtreecommitdiffstats
path: root/Lib/compiler/ast.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2004-08-04 02:36:18 (GMT)
committerTim Peters <tim.peters@gmail.com>2004-08-04 02:36:18 (GMT)
commit6db15d7307b831766617f6a9700ecc4c75a16081 (patch)
treecbc747970fd7d68844de8abaca57c8102dc859b2 /Lib/compiler/ast.py
parentcea2cc4a21e7e2ba84f6dc11682821e502bd1f5f (diff)
downloadcpython-6db15d7307b831766617f6a9700ecc4c75a16081.zip
cpython-6db15d7307b831766617f6a9700ecc4c75a16081.tar.gz
cpython-6db15d7307b831766617f6a9700ecc4c75a16081.tar.bz2
Whitespace normalization.
Diffstat (limited to 'Lib/compiler/ast.py')
-rw-r--r--Lib/compiler/ast.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/compiler/ast.py b/Lib/compiler/ast.py
index a81937f..6f585b7 100644
--- a/Lib/compiler/ast.py
+++ b/Lib/compiler/ast.py
@@ -607,7 +607,7 @@ class GenExpr(Node):
self.code = code
self.argnames = ['[outmost-iterable]']
self.varargs = self.kwargs = None
-
+
def getChildren(self):
@@ -785,7 +785,7 @@ class Lambda(Node):
self.varargs = 1
if flags & CO_VARKEYWORDS:
self.kwargs = 1
-
+
def getChildren(self):