diff options
author | Emile Anclin <emile.anclin@logilab.fr> | 2010-03-03 17:52:35 +0100 |
---|---|---|
committer | Emile Anclin <emile.anclin@logilab.fr> | 2010-03-03 17:52:35 +0100 |
commit | 9a7cc0159266d0ef9679c37cd5ac7926692f41e7 (patch) | |
tree | 27037d3a53b9b39bd495d7309a598943fa0e0b2a | |
parent | 6e5bd7737b21efc6c3b1ace6e5093fd4c5c45597 (diff) | |
download | astroid-git-9a7cc0159266d0ef9679c37cd5ac7926692f41e7.tar.gz |
fix imports: _nodes -> bases
--HG--
branch : rebuild
-rw-r--r-- | infutils.py | 2 | ||||
-rw-r--r-- | node_classes.py | 2 | ||||
-rw-r--r-- | scoped_nodes.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/infutils.py b/infutils.py index c74fbd54..919f4734 100644 --- a/infutils.py +++ b/infutils.py @@ -25,7 +25,7 @@ __doctype__ = "restructuredtext en" from logilab.common.compat import chain, imap from logilab.astng._exceptions import InferenceError, NotFoundError, UnresolvableName -from logilab.astng._nodes import BaseClass +from logilab.astng.bases import BaseClass class Proxy(BaseClass): diff --git a/node_classes.py b/node_classes.py index 3715a09d..542d3563 100644 --- a/node_classes.py +++ b/node_classes.py @@ -3,7 +3,7 @@ from logilab.common.compat import chain, imap from logilab.astng import (ASTNGBuildingException, InferenceError, NotFoundError, NoDefault) -from logilab.astng._nodes import NodeNG, StmtMixIn, BlockRangeMixIn, BaseClass +from logilab.astng.bases import NodeNG, StmtMixIn, BlockRangeMixIn, BaseClass from logilab.astng.infutils import Instance """ diff --git a/scoped_nodes.py b/scoped_nodes.py index 744a2e3e..c46cfd9e 100644 --- a/scoped_nodes.py +++ b/scoped_nodes.py @@ -39,7 +39,7 @@ 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._nodes import NodeNG, StmtMixIn, BaseClass +from logilab.astng.bases import NodeNG, StmtMixIn, BaseClass from logilab.astng.infutils import YES, InferenceContext, Instance, Generator, \ UnboundMethod, BoundMethod, _infer_stmts, copy_context |