diff options
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/compiler/ast.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/compiler/ast.py b/Lib/compiler/ast.py index e5183fa..53dc410 100644 --- a/Lib/compiler/ast.py +++ b/Lib/compiler/ast.py @@ -146,7 +146,7 @@ class Global(Node): return self.names, def getChildNodes(self): - return self.names, + return () def __repr__(self): return "Global(%s)" % (repr(self.names),) |