diff options
author | Sylvain Thénault <sylvain.thenault@logilab.fr> | 2013-03-29 07:26:56 +0100 |
---|---|---|
committer | Sylvain Thénault <sylvain.thenault@logilab.fr> | 2013-03-29 07:26:56 +0100 |
commit | c2974bc419b617d2cb25caedd4316d76925cc936 (patch) | |
tree | 49300a2f24d81843bba762e5e5c574c982d9617b /inference.py | |
parent | 91ed159199a7fbb9a156e29f195ab5b2dc6b0159 (diff) | |
download | astroid-git-c2974bc419b617d2cb25caedd4316d76925cc936.tar.gz |
import cleanups
--HG--
branch : stable
Diffstat (limited to 'inference.py')
-rw-r--r-- | inference.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/inference.py b/inference.py index ac56bed4..3b158346 100644 --- a/inference.py +++ b/inference.py @@ -21,14 +21,13 @@ __doctype__ = "restructuredtext en" from itertools import chain -import sys from logilab.astng import nodes from logilab.astng.manager import ASTNGManager -from logilab.astng.exceptions import (ASTNGBuildingException, ASTNGError, +from logilab.astng.exceptions import (ASTNGError, InferenceError, NoDefault, NotFoundError, UnresolvableName) -from logilab.astng.bases import YES, Instance, InferenceContext, Generator, \ +from logilab.astng.bases import YES, Instance, InferenceContext, \ _infer_stmts, copy_context, path_wrapper, raise_if_nothing_infered from logilab.astng.protocols import _arguments_infer_argname |