diff options
author | Emile Anclin <emile.anclin@logilab.fr> | 2010-09-22 15:05:42 +0200 |
---|---|---|
committer | Emile Anclin <emile.anclin@logilab.fr> | 2010-09-22 15:05:42 +0200 |
commit | dbeaad5988d27f5fd56a278e70a8c7995c87ff7c (patch) | |
tree | 8833c2c86dfca6bfa91aebbe18817fe2e10ab677 /utils.py | |
parent | e2f48476e242dcee95a6de024c937720c39ed29b (diff) | |
download | astroid-git-dbeaad5988d27f5fd56a278e70a8c7995c87ff7c.tar.gz |
py2.3 compat : syntax, set; _nodes_compiler.py : fix visit_discard
--HG--
branch : stable
Diffstat (limited to 'utils.py')
-rw-r--r-- | utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -37,7 +37,7 @@ extract information from it __docformat__ = "restructuredtext en" from logilab.astng._exceptions import IgnoreChild, ASTNGBuildingException - +from logilab.common.compat import set class ASTVisitor(object): """Abstract Base Class for Python AST Visitors. |