summaryrefslogtreecommitdiff
path: root/astroid/tree/scoped_nodes.py
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2015-11-07 14:55:58 +0200
committerClaudiu Popa <pcmanticore@gmail.com>2015-11-07 14:55:58 +0200
commit17c6056be90a6e716cdba5e70cd37515b2688f40 (patch)
treef86bc800cf6e8b09f72d306b67bdc17756ce6a14 /astroid/tree/scoped_nodes.py
parent8603238d7669d1b87bbfb573049929b8fe2716ca (diff)
downloadastroid-git-17c6056be90a6e716cdba5e70cd37515b2688f40.tar.gz
Move LookupMixin into mixins, since we can it doesn't need to depend on Name nodes anymore.
Diffstat (limited to 'astroid/tree/scoped_nodes.py')
-rw-r--r--astroid/tree/scoped_nodes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/astroid/tree/scoped_nodes.py b/astroid/tree/scoped_nodes.py
index a59fcab7..4e67b554 100644
--- a/astroid/tree/scoped_nodes.py
+++ b/astroid/tree/scoped_nodes.py
@@ -140,7 +140,7 @@ def builtin_lookup(name):
# TODO move this Mixin to mixins.py; problem: 'FunctionDef' in _scope_lookup
-class LocalsDictNodeNG(node_classes.LookupMixIn,
+class LocalsDictNodeNG(mixins.LookupMixIn,
treebase.NodeNG):
""" this class provides locals handling common to Module, FunctionDef
and ClassDef nodes, including a dict like interface for direct access