summaryrefslogtreecommitdiff
path: root/utils.py
diff options
context:
space:
mode:
authorEmile Anclin <emile.anclin@logilab.fr>2009-02-25 20:10:09 +0100
committerEmile Anclin <emile.anclin@logilab.fr>2009-02-25 20:10:09 +0100
commit4dfc38b476a4ad1f1f8603f7e6ea58db14951dd9 (patch)
treefac06674a0845042f814f523e701b8633d47d982 /utils.py
parent4b0b2d20b52ae0eccf9285d6d21daad375e4325c (diff)
downloadastroid-git-4dfc38b476a4ad1f1f8603f7e6ea58db14951dd9.tar.gz
some small test corrections
--HG-- branch : _ast_compat
Diffstat (limited to 'utils.py')
-rw-r--r--utils.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/utils.py b/utils.py
index 6952bd21..ec0d7f2b 100644
--- a/utils.py
+++ b/utils.py
@@ -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')