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 /mixins.py | |
parent | 91ed159199a7fbb9a156e29f195ab5b2dc6b0159 (diff) | |
download | astroid-git-c2974bc419b617d2cb25caedd4316d76925cc936.tar.gz |
import cleanups
--HG--
branch : stable
Diffstat (limited to 'mixins.py')
-rw-r--r-- | mixins.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -41,6 +41,7 @@ class BlockRangeMixIn(object): return lineno, orelse[0].fromlineno - 1 return lineno, last or self.tolineno + class FilterStmtsMixin(object): """Mixin for statement filtering and assignment type""" @@ -78,7 +79,6 @@ class ParentAssignTypeMixin(AssignTypeMixin): return self.parent.ass_type() - class FromImportMixIn(FilterStmtsMixin): """MixIn for From and Import Nodes""" |