diff options
author | Emile Anclin <emile.anclin@logilab.fr> | 2010-12-02 10:53:33 +0100 |
---|---|---|
committer | Emile Anclin <emile.anclin@logilab.fr> | 2010-12-02 10:53:33 +0100 |
commit | 47a17eee2201e7c878ed75cd67c3fdae13dbe8e3 (patch) | |
tree | 45b126a827d64b4565c241935df3ca4a77074d84 /scoped_nodes.py | |
parent | fb64c733945e719d8b5d3f5e467cb0c0b01a0fb0 (diff) | |
download | astroid-git-47a17eee2201e7c878ed75cd67c3fdae13dbe8e3.tar.gz |
reduce circular imports I: import exceptions directly
- rename exceptions module: it's exported to Pylint anyway
Diffstat (limited to 'scoped_nodes.py')
-rw-r--r-- | scoped_nodes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scoped_nodes.py b/scoped_nodes.py index 64057318..336f0b1c 100644 --- a/scoped_nodes.py +++ b/scoped_nodes.py @@ -32,7 +32,7 @@ from itertools import chain from logilab.common.compat import builtins from logilab.common.decorators import cached -from logilab.astng import NotFoundError, NoDefault, \ +from logilab.astng.exceptions import NotFoundError, NoDefault, \ ASTNGBuildingException, InferenceError from logilab.astng.node_classes import Const, DelName, DelAttr, \ Dict, From, List, Name, Pass, Raise, Return, Tuple, Yield, \ |