the names attribute of Global is not a node

This commit is contained in:
Jeremy Hylton 2001-09-14 22:40:36 +00:00
parent ad2dc3fc44
commit fff252d20d
4 changed files with 4 additions and 4 deletions

View file

@ -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),)