diff options
author | Emile Anclin <emile.anclin@logilab.fr> | 2010-03-04 12:45:36 +0100 |
---|---|---|
committer | Emile Anclin <emile.anclin@logilab.fr> | 2010-03-04 12:45:36 +0100 |
commit | fb9de009d05656e580528fb86e0d2d13ce1c104b (patch) | |
tree | f9936d1e5749e13c9c4b1d77285858035c002110 /inference.py | |
parent | 6999b05af2c2f3577c21768138f00e4d0e1cb762 (diff) | |
download | astroid-git-fb9de009d05656e580528fb86e0d2d13ce1c104b.tar.gz |
move all infutils stuff to bases.py
We will need path_wrapper in the default NodeNG.infer method and have
to avoid circular import.
--HG--
branch : rebuild
Diffstat (limited to 'inference.py')
-rw-r--r-- | inference.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inference.py b/inference.py index e21785a6..0e5ddcc3 100644 --- a/inference.py +++ b/inference.py @@ -33,7 +33,7 @@ except NameError: from logilab.astng import MANAGER, nodes, raw_building from logilab.astng import ASTNGError, InferenceError, UnresolvableName, \ NoDefault, NotFoundError, ASTNGBuildingException -from logilab.astng.infutils import YES, Instance, InferenceContext, \ +from logilab.astng.bases import YES, Instance, InferenceContext, \ _infer_stmts, copy_context, path_wrapper, raise_if_nothing_infered from logilab.astng.protocols import _arguments_infer_argname |