diff options
author | Emile Anclin <emile.anclin@logilab.fr> | 2009-09-02 19:38:08 +0200 |
---|---|---|
committer | Emile Anclin <emile.anclin@logilab.fr> | 2009-09-02 19:38:08 +0200 |
commit | 6404277c5471119ee0444a67144f57d698b24411 (patch) | |
tree | 4272d7118360b5ee8adbb64b1118eb3f6bb9eac8 /inference.py | |
parent | 586de3f84f1d0d3812399c013806c41c508af0ff (diff) | |
download | astroid-git-6404277c5471119ee0444a67144f57d698b24411.tar.gz |
[R] add an _nodes.py for avoiding circular imports.py
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 f8ab6169..5bb3e77a 100644 --- a/inference.py +++ b/inference.py @@ -30,7 +30,7 @@ try: except NameError: class GeneratorExit(Exception): pass -from logilab.astng import MANAGER, nodes, raw_building +from logilab.astng import MANAGER, _nodes as nodes, raw_building from logilab.astng import ASTNGError, InferenceError, UnresolvableName, \ NoDefault, NotFoundError, ASTNGBuildingException from logilab.astng.infutils import YES, Instance, InferenceContext, \ |