diff options
Diffstat (limited to 'Lib/compiler/ast.py')
-rw-r--r-- | Lib/compiler/ast.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/compiler/ast.py b/Lib/compiler/ast.py index a81937f850..6f585b717e 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): |