diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2001-08-29 18:17:22 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2001-08-29 18:17:22 (GMT) |
commit | 5a9ac9704094f13c5bdfc67080a58279699d8e47 (patch) | |
tree | 34fbf7422dc4476bf66d651f5f83c54698c7003e /Lib/compiler | |
parent | 94afe32b5eabf962c872850b10886f4545b02614 (diff) | |
download | cpython-5a9ac9704094f13c5bdfc67080a58279699d8e47.zip cpython-5a9ac9704094f13c5bdfc67080a58279699d8e47.tar.gz cpython-5a9ac9704094f13c5bdfc67080a58279699d8e47.tar.bz2 |
Change default() to use getChildNodes() instead of getChildren()
Diffstat (limited to 'Lib/compiler')
-rw-r--r-- | Lib/compiler/visitor.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Lib/compiler/visitor.py b/Lib/compiler/visitor.py index 3f2ae66..0560619 100644 --- a/Lib/compiler/visitor.py +++ b/Lib/compiler/visitor.py @@ -44,9 +44,8 @@ class ASTVisitor: self._cache = {} def default(self, node, *args): - for child in node.getChildren(): - if isinstance(child, ast.Node): - self.dispatch(child, *args) + for child in node.getChildNodes(): + self.dispatch(child, *args) def dispatch(self, node, *args): self.node = node |