diff options
author | Emile Anclin <emile.anclin@logilab.fr> | 2009-02-25 20:10:09 +0100 |
---|---|---|
committer | Emile Anclin <emile.anclin@logilab.fr> | 2009-02-25 20:10:09 +0100 |
commit | 4dfc38b476a4ad1f1f8603f7e6ea58db14951dd9 (patch) | |
tree | fac06674a0845042f814f523e701b8633d47d982 /utils.py | |
parent | 4b0b2d20b52ae0eccf9285d6d21daad375e4325c (diff) | |
download | astroid-git-4dfc38b476a4ad1f1f8603f7e6ea58db14951dd9.tar.gz |
some small test corrections
--HG--
branch : _ast_compat
Diffstat (limited to 'utils.py')
-rw-r--r-- | utils.py | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -24,8 +24,7 @@ __docformat__ = "restructuredtext en" from itertools import imap from logilab.common.compat import enumerate -from logilab.astng._exceptions import IgnoreChild, UnresolvableName, \ - NotFoundError, InferenceError, ASTNGError +from logilab.astng._exceptions import * def extend_class(original, addons): """add methods and attribute defined in the addons class to the original @@ -400,4 +399,6 @@ def _are_from_exclusive_nodes(values1, values2): else: return stmt1_num != stmt2_num +__all__ = ('REDIRECT', 'LocalsVisitor', 'ASTWalker', 'ASTVisitor', + 'are_exclusive', 'extend_class') |