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 /scoped_nodes.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 'scoped_nodes.py')
-rw-r--r-- | scoped_nodes.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scoped_nodes.py b/scoped_nodes.py index f0a694c1..1b16f47e 100644 --- a/scoped_nodes.py +++ b/scoped_nodes.py @@ -39,9 +39,9 @@ from logilab.astng import MANAGER, NotFoundError, NoDefault, \ from logilab.astng.node_classes import (Const, Comprehension, Dict, From, For, Import, List, Pass, Raise, Return, Tuple, Yield, DelAttr, are_exclusive, const_factory as cf, unpack_infer) -from logilab.astng.bases import NodeNG, StmtMixIn, BaseClass -from logilab.astng.infutils import YES, InferenceContext, Instance, Generator, \ - UnboundMethod, BoundMethod, _infer_stmts, copy_context +from logilab.astng.bases import (NodeNG, StmtMixIn, BaseClass, YES, + InferenceContext, Instance, Generator, + UnboundMethod, BoundMethod, _infer_stmts, copy_context) from logilab.astng.nodes_as_string import as_string |