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 /protocols.py | |
parent | 586de3f84f1d0d3812399c013806c41c508af0ff (diff) | |
download | astroid-git-6404277c5471119ee0444a67144f57d698b24411.tar.gz |
[R] add an _nodes.py for avoiding circular imports.py
Diffstat (limited to 'protocols.py')
-rw-r--r-- | protocols.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols.py b/protocols.py index 8385c666..7ffe8c2a 100644 --- a/protocols.py +++ b/protocols.py @@ -24,7 +24,7 @@ from __future__ import generators __doctype__ = "restructuredtext en" -from logilab.astng import InferenceError, NoDefault, nodes +from logilab.astng import InferenceError, NoDefault, _nodes as nodes from logilab.astng.infutils import copy_context, unpack_infer, \ raise_if_nothing_infered, yes_if_nothing_infered, Instance, Generator, YES from logilab.astng.nodes import Const, Class, Function, Tuple, List, \ |