diff options
| author | Jeremy Hylton <jeremy@alum.mit.edu> | 2001-08-29 18:17:22 +0000 |
|---|---|---|
| committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2001-08-29 18:17:22 +0000 |
| commit | 5a9ac9704094f13c5bdfc67080a58279699d8e47 (patch) | |
| tree | 34fbf7422dc4476bf66d651f5f83c54698c7003e /Lib/compiler/visitor.py | |
| parent | 94afe32b5eabf962c872850b10886f4545b02614 (diff) | |
| download | cpython-git-5a9ac9704094f13c5bdfc67080a58279699d8e47.tar.gz | |
Change default() to use getChildNodes() instead of getChildren()
Diffstat (limited to 'Lib/compiler/visitor.py')
| -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 3f2ae668e2..0560619c84 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 |
