diff options
author | Tim Peters <tim.peters@gmail.com> | 2004-09-12 03:49:31 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2004-09-12 03:49:31 (GMT) |
commit | 0e9980f75a203ee1b2ac28f76a76239446b271d6 (patch) | |
tree | d1691347ed42925a68cebb2647d83dba6d45cb55 /Lib/compiler/ast.py | |
parent | 2ee8099bd82b5eea9a3efc54f7bcdd12b54f84cf (diff) | |
download | cpython-0e9980f75a203ee1b2ac28f76a76239446b271d6.zip cpython-0e9980f75a203ee1b2ac28f76a76239446b271d6.tar.gz cpython-0e9980f75a203ee1b2ac28f76a76239446b271d6.tar.bz2 |
Whitespace normalization.
Diffstat (limited to 'Lib/compiler/ast.py')
-rw-r--r-- | Lib/compiler/ast.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/compiler/ast.py b/Lib/compiler/ast.py index cfc2a51..6b78fdd 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): @@ -1313,4 +1313,4 @@ class Yield(Node): for name, obj in globals().items(): if isinstance(obj, type) and issubclass(obj, Node): - nodes[name.lower()] = obj + nodes[name.lower()] = obj |