commit | fff252d20d634a3c86f06ef8585c3111c1d50091 | [log] [tgz] |
---|---|---|
author | Jeremy Hylton <jeremy@alum.mit.edu> | Fri Sep 14 22:40:36 2001 +0000 |
committer | Jeremy Hylton <jeremy@alum.mit.edu> | Fri Sep 14 22:40:36 2001 +0000 |
tree | 3c86642cf6d55e3cf9270c6eb794735e7766707d | |
parent | ad2dc3fc4427c640fbdc098922c9921e0f8894c0 [diff] [blame] |
the names attribute of Global is not a node
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 @@ return self.names, def getChildNodes(self): - return self.names, + return () def __repr__(self): return "Global(%s)" % (repr(self.names),)